:root {
    color-scheme: light dark;
}

* {
    margin: 0;
    padding: 0;
}

/* @media (prefers-color-scheme: dark) {
    body {
        background-color: #000;
    }
}

@media (prefers-color-scheme: light) {
    body {
        background-color: #FFF;
    }
} */

body {
    background-color: #000;
}

@media screen and (max-width: 600px) {
    .container {
        width: 100vw;
        height: 100vh;
        position: relative;
    }

    .video {
        width: 100%;
        height: auto;
        position: absolute;
        top: 170px;
        left: 0;
    }
    
    .footer {
        position: absolute;
        width: 80%;
        bottom: 20px;
        left: 10%;
    }
}

@media screen and (min-width: 600px) {
    .container {
        width: 100vw;
        min-height: 100vh;
    }

    .video {
        width: 100%;
        height: auto;
        z-index: 5;
    }
    
    .footer {
        width: 60%;
        margin: 10% 20% 20px 20%;
        z-index: 1;
    }
}

/* @media screen and (min-width: 400px) {
    .container {
        width: 100vw;
        min-height: 100vh;
        position: relative;
    }

    .video {
        width: 100%;
        height: auto;
        position: absolute;
        left: 0;
        z-index: 5;
    }
    
    .footer {
        width: 60%;
        position: absolute;
        bottom: 20px;
        left: 20%;
        z-index: 1;
    }
} */