*{
    margin: 0;
    padding: 0;
    font-family: Helvetica Neue, Helvetica, Roboto, Arial;
    overflow-x: hidden;
}

body{
    color: white;
    min-height: 100vh;
    width: 100vw;
    background-image: url("../backgrounds/background_jerry.png");
    background-color: black;
    background-repeat: repeat-y;
    background-size: contain;
    position: relative;
}
.lava-overlay{
    position: absolute;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to top, rgba(255, 145, 0, 0.15), rgba(255, 145, 0, 0) 250px);
    bottom: 0%;
    z-index: 1;
}

.content{
    display: flex;
    flex-direction: column;
    margin-bottom: 135px;
}


/* HEADER IMAGE */

.head-image{
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
}

.head-image-image{
    overflow: visible;
    position: absolute;
    width: auto;
    height: 100%;
}

.head-image-image img{
    width: auto;
    height: 100%;
    animation: image-in 2.5s;
}

.head-image-logo{
    overflow: visible;
    position: absolute;
    width: auto;
    height: 250px;
    right: 25px;
    top: 50%;
    transform: translate(0, -50%);
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5));
}

.head-image-logo img{
    width: auto;
    height: 100%;
    animation: image-in 2.5s;
}

@keyframes image-in {
    from { height: 110%; opacity: 0; }
    to { height: 100%; opacity: 1; }
}

/* BUTTON */

.button-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.button{
    width: 468px;
    max-height: 78px;
    aspect-ratio: 6/1;
    background-image: url("../backgrounds/background_timer.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px;
}
.button h1{
    font-family: 'Liberation Sans', Arial, sans-serif;
    text-shadow: black 0px 0 20px;
    font-size: 36px;
    font-weight: 900;
}

/* BODY */

.body-image{
    position: relative;
    aspect-ratio: 16/9;
    display: flex;
    width: 100%;
    height: 100%;
}

.body-image-image img{
    position: absolute;
    height: 100%;
    width: 100%;
    aspect-ratio: 16/9;
}

.body-image-overlay{
    position: absolute;
    overflow: visible;
    height: 100%;
    width: 100%;
}
.body-image-description{
    position: absolute;
    width: 60%;
    top: 25px;
    left: 25px;
}
.body-image-description h1{
    font-family: 'Liberation Sans', Arial, sans-serif;
    text-shadow: black 0px 0 20px;
    font-size: 48px;
    padding-bottom: 25px;
    font-weight: 900;
    font-style: italic;
}
.body-image-description h2{
    font-family: 'Liberation Sans', Arial, sans-serif;
    text-shadow: black 0px 0 10px;
    font-size: 36px;
    font-weight: 300;
    margin: 25px;
    opacity: 75%;
}

.body-image-description-2{
    position: absolute;
    width: 60%;
    height: auto;
    top: 25px;
    right: 25px;
    text-justify: right;
}

.body-image-description-2 h1{
    font-family: 'Liberation Sans', Arial, sans-serif;
    text-shadow: black 0px 0 20px;
    font-size: 48px;
    padding-bottom: 25px;
    font-weight: 900;
    font-style: italic;
    text-justify: right;
}

/* FOOTER */

.footer-image{
    position: relative;
    aspect-ratio: 3.671/1;
    display: flex;
    width: 100%;
    height: auto;
}

.footer-image-image img{
    position: absolute;
    height: 100%;
    width: 100%;
    aspect-ratio: 3.671/1;
}

/* ANIMATIONS */

@keyframes heading-in {
    0% {
        opacity: 0%;
        height: 110%;
        width: 110%;
    }
    100% {
        opacity: 100%;
        height: 100%;
        width: 100%;
    }
}

@keyframes logo-in {
    0% {
        opacity: 0%;
        height: 255px;
        width: 573px;
    }
    100% {
        opacity: 100%;
        height: 245px;
        width: 540px;
    }
}

@keyframes overlay-in {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}



@media only screen and (min-width: 767px) {
}
@media only screen and (max-width: 767px) {
    /* HEADER IMAGE */

    .head-image{
        width: 100%;
        height: 500px;
        overflow: hidden;
        position: relative;
    }

    .head-image-image{
        overflow: visible;
        position: absolute;
        width: auto;
        height: 70%;
    }

    .head-image-image img{
        width: auto;
        height: 100%;
        animation: image-in 2.5s;
    }

    .head-image-logo{
        overflow: visible;
        position: absolute;
        width: auto;
        height: 125px;
        right: 50%;
        top: auto;
        bottom: 50px;
        transform: translate(50%,0);
        filter: drop-shadow(0 0 25px rgba(0, 0, 0, 1.5));
    }

    .head-image-logo img{
        width: auto;
        height: 100%;
        animation: image-in 2.5s;
    }

    /* BUTTON */
    
    .button-container{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .button{
        width: 468px;
        max-height: 78px;
        aspect-ratio: 6/1;
        background-image: url("../backgrounds/background_timer.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0px 20px;
    }
    .button h1{
        font-family: 'Liberation Sans', Arial, sans-serif;
        text-shadow: black 0px 0 20px;
        font-size: 24px;
        font-weight: 900;
        overflow: visible;
    }
    
}