*{
    margin: 0;
    padding: 0;
    font-family: RobotoThin;
    overflow-x: hidden;
    color: black;
}
@font-face {
    font-family: "RobotoThin";
    src: url("../Fonts/Roboto-Thin.ttf") format("truetype");
}
body{
    color: black;
    min-height: 100vh;
    width: 100vw;
    background-image: url("../backgrounds/background_tiltdodge.webp");
    background-size: cover;
    position: relative;
}

h1{
    color: black;
}
h2{
    color:rgba(0, 0, 0, .5);
}
a{
    color: black;
}
b{
    font-family: RobotoThin;
}

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


/* HEADER IMAGE */

.head-image{
    margin-top: 5vh;
    width: 100%;
    height: 100%;
    overflow: visible;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*
.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{
    margin-top: 0;
    overflow: visible;
    position: relative;
    width: auto;
    height: 300px;
    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: 140%; opacity: 0; }
    to { height: 100%; opacity: 1; }
}

/* BODY */

.body-image{
    position: relative;
    display: flex;
    width: 100%;
    min-height: auto;
}

.body-image-image{
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: visible;
}

.body-image-image img{
    position: relative;
    height: 100%;
    width: 100%;
    overflow: visible;
}

.body-text{
    position: absolute;
    padding-right: 50px;
    right: 0;
    width: 60%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    text-transform: lowercase;
    align-items: end;
    gap: 25px;
    flex-direction: column;
    text-align: right;
    color: black;
}

/* CONTENT BOX */

.content-box{
    display: flex;
    overflow: visible;
    justify-content: center;
    gap: 25px;
    align-items: center;
}

/* SCREENSHOTS */

.screenshots{
    width: auto;
    height: 600px;
    display: flex;
    justify-content: center;
    overflow: visible;
}
.screenshot{
    height: 100%;
    border-radius: 15px;
    border-color: #000000;
    border-width: 2.5px;
    border-style: solid;
    overflow: visible;
    background-color: black;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5));
}
.screenshot img{
    height: 100%;
    border-radius: 15px;
    border-color: white;
    border-width: 5px;
}

/* Fading animation */

.fade {
    animation-name: fade;
    animation-duration: 5s;
  }
  
  @keyframes fade {
    from {opacity: 0}
    30% {opacity: 1}
    90% {opacity: 1}
    to {opacity: 0}
  }

/* FOOTER */

.footer-image{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    display: flex;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.footer-image-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-image-image img{
    position: relative;
    height: auto;
    width: 60%;
    aspect-ratio: 2.792/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: 150px;
        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{
        height: 100px;
    }

    .head-image-logo img{
        width: auto;
        height: 100%;
        animation: image-in 2.5s;
    }
    .body-image{
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: auto;
    }

    .body-image-image{
        position: relative;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

    .body-image-image img{
        position: relative;
        height: 100%;
        width: 100%;
    }

    .body-text{
        position: relative;
        width: 100%;
        min-height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
        flex-direction: column;
        text-align: center;
        box-sizing: border-box;
        padding-right: 50px;
        padding-left: 50px;
    }

    /* CONTENT BOX */

    .content-box{
        flex-direction: column;
        gap: 10px;
    }
    .screenshots{
        height: auto;
    }
    .screenshot{
        height: auto;
        width: 75%;
    }
    .screenshot img{
        height: auto;
        width: 100%;
    }
    .subtext{
        box-sizing: border-box;
        padding-right: 50px;
        padding-left: 50px;
    }
    
}