*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
}

:root {
    /* COLORS */
    --white: #F4F4F8;
    --base: #119DA4;
    --base-lite: #34bcc4;
    --accent: #181611;
    --accent-lite: #544B3D;
    --accent2: #E83151;
    --accent2-lite: #e6677c;
    --black: #111;
    --black-dark: rgba(53, 53, 53, 0.8);
    --black-lite: rgba(53, 53, 53, 0.5);
    --dark-trans: rgba(0, 0, 0, 0.2);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 10, 0.3);
}

header ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-transform: uppercase;
}

header a {
    text-decoration: none;
    cursor: pointer;
}

header a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

li {
    cursor: pointer;
    padding: 5px;
    z-index: 10;
}

h1 {
    letter-spacing: 2px;
    text-shadow: #000 5px 10px 20px;
}

h2 {
    letter-spacing: 10px;
    text-transform: uppercase;
}

h3 {
    text-transform: uppercase;
    font-weight: 300;
}

h1, h3 {
    text-align: center;
    z-index: 2;
}

.home-page {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2)), url(/img/bckgrnd/home.jpg) no-repeat fixed center center;
    background-size: cover;
}

.reels-page {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2)), url(/img/bckgrnd/reels.jpg) no-repeat fixed center center;
    background-size: cover;
}

.credits-page {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/img/bckgrnd/credits.jpg) no-repeat fixed center center;
    background-size: cover;
}

.contact-page {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/img/bckgrnd/contact.jpg) no-repeat fixed center center;
    background-size: cover;
}

main {
    position: relative;
    min-height: 100vh;
}

/* .home {
    position: relative;
    height: 100vh;
}

.home-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
} */

.home, .reels-container, .credits-container, .contact-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.contact-container {
    height: 100vh;
    justify-content: center;
}

.home-reels {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.reels {
    width: 80%;
    max-width: 800px;
    text-align: center;
}

.reels iframe {
    margin: 1vh 0;
    width: 100%;
    max-height: 50vh;
}

.reels-container h3 {
    font-size: 3vh;
    font-weight: 800;
}

.featured {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
}

header img {
    height: 4vh;
    filter: invert(100%) sepia(0%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
    cursor: pointer;
}

/* Full-page menu for small screens */
.full-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 20;
    justify-content: center;
    align-items: center;
}

.full-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.full-menu li {
    margin: 20px 0;
}

.full-menu a {
    text-decoration: none;
    text-transform: uppercase;
}

/* Burger Menu */
.burger-menu {
    display: none;
    cursor: pointer;
}

/*** CREDITS ***/
.credits-container li {
    cursor: default;
    font-weight: 100;
    padding: 8px 0;
}

@media screen and (max-width: 600px) {
    .home h3, .contact-container h3 {
        font-size: 1.8vh;
    }

    h3 {
        letter-spacing: 4px;
    }
    
    .credits-container li {
        text-align: left;
        width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .home h1 {
        font-size: 4vh;
    }

    .home h3 {
        font-size: 1.8vh;
    }

    .featured {
        flex-direction: column;
    }

    .featured a {
        padding: 1vh 0;
    }

    .featured img {
        max-height: 2vh;
    }

    .full-menu li {
        font-size: 3vh;
    }

    .home-reels {
        width: 98%;
    }
}

@media screen and (min-width: 801px) and (max-width: 1600px) {
    .burger-menu {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
    }

    header ul {
        display: none;
    }

    .home h1 {
        font-size: 7vh;
    }

    .home h3 {
        font-size: 2.5vh;
    }

    .featured img {
        max-height: 2vh;
    }

    .full-menu li {
        font-size: 5vh;
    }

    .home-reels {
        width: 80%;
    }
}

@media screen and (min-width: 1601px) {
    header ul {
        font-size: 1.8vh;
    }

    .home h1 {
        font-size: 8vh;
    }

    h2 {
        font-size: 3vh;
        padding-bottom: 20px;
    }

    .home h3 {
        font-size: 3vh;
    }

    .featured img {
        max-height: 3vh;
    }

    .home-reels {
        width: 60%;
    }

    .reels-container, .credits-container {
        padding-top: 8vh;
    }

    .home-text {
        position: relative;
        margin-top: 10vh;
    }

    .home iframe {
        margin: 6vh 0;
    }
}

@media screen and (max-width: 1600px) {
    .burger-menu {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
    }

    header ul {
        display: none;
    }

    .full-menu img {
        width: 30vw;
    }

    .home-text {
        position: relative;
        margin-top: 4vh;
    }
}