body {
    margin: 0;
    padding: 0;
    /* background-color: #ff6a13; */
    background-color: #141419;
}

#bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/bg.jpg');
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

#bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20vw;
    min-width: 300px;
    aspect-ratio: 16 / 9;
    background-color: #141419;
}

#logo {
    position: absolute;
    top: clamp(24px, 21.621px + 100vw* .0061, 32px);
    left: clamp(16px, 2.896px + 100vw* .0336, 60px);
    height: 28px;
    z-index: 0;
    color: white;
}

#video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 22px;
    aspect-ratio: 16 / 9;
    box-shadow: 0 24px 40px -4px rgba(15, 23, 42, .15), 0 20px 25px -5px rgba(15, 23, 42, .1), 0 8px 10px -6px rgba(15, 23, 42, .1);
    overflow: hidden;
    width: 960px;
    max-width: 100vw;
    z-index: 1;
}

@media (max-width: 743px) {
    #logo {
        top: clamp(64px, 4rem + 80 * (100vw - 390px)/1310, 144px);
        left: 50%;
        transform: translateX(-50%);
        height: 34px;
    }

    #bg {
        left: -120%;
    }
}

@media (max-width: 960px) {
    #video {
        border-radius: 0;
    }
}