html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, #ff5e04, #ff0517);
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

#logo-container {
    width: 60vw;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#company-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
}