* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hero {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12,3,51,0.3), rgba(12,3,51,0.3));
    position: relative;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

nav {
    width: 100%;
    position: absolute;
    top: 20px;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
}

.background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

#llc {
    padding-bottom: 60px;
}

#llc, #title {
    width: 50vw; 
    max-width: 50%;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
}

.mymovies-button {
    font-family: 'mymovies', sans-serif;
    color: #fff;
}

@font-face {
    font-family: 'mymovies';
    src: url('/font/FascinateInline-Regular.otf') format('opentype'),
         url('/font/FascinateInline-Regular.eot'), /* IE9 Compat Modes */
         url('/font/FascinateInline-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/font/FascinateInline-Regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('/font/FascinateInline-Regular.woff') format('woff'), /* Pretty Modern Browsers */
         url('/font/FascinateInline-Regular.ttf')  format('truetype'), /* Safari, Android, iOS */
         url('/font/FascinateInline-Regular.svg#FascinateInlineRegular') format('svg'); /* Legacy iOS */
}

@media screen and (max-width: 1000px) {
    .hero {
        padding: 0 3%;
        height: auto;
        min-height: 50vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
    }

    #title {
        margin-top: 20px;
        width: 90vw;
        max-width: 90%;
        margin-bottom: 20px;
    }

    #llc {
        margin-top: 200px;
        width: 90vw;
        max-width: 90%;
        margin-bottom: 20px;
    }

    nav {
        padding: 10px 5%;
    }
    
    nav ul li {
        list-style: none;
        display: inline-block;
        margin-right: 5px;
        padding: 4px;
    }

    nav ul li a {
        font-size: 10px;
    }

    .background-video {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        z-index: -1;
    }
}

img, video {
    max-width: 100%;
    height: auto;
}