body {
    background-color: 000000;
}

#overlap {
    position: relative;
    width: 100%;
    height: 100vh;
}

#coverImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    will-change: transform;
    object-fit: cover;
    object-position: 50% 0%;
    padding: 0px;
    margin: 0px;
    z-index: -1;
}

#titleContainer {
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 50px;
    width: 100%;
}

#titleText {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 80%;
    gap: 20px;
}

#titleText p {
    color: black;
    font-weight: 400;
    font-size: 5vw;
    margin: 0;
}

#titleText div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#titleText img {
    height: 25vw;
    object-fit: cover;
}

#infoDiv {
    height: fit-content;
    background-color: black;
    box-shadow: 0px -5px 20px black;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 100px;
}

.infoBox {
    display: flex;
    width: 80%;
    flex-direction: column-reverse;
}

.textBox {
    margin-top: 25px;
}

.textBox h1 {
    font-weight: 600;
    /*font-size: 50px;*/
    font-size: 6vw;
}

.textBox p {
    font-size: 4vw;
}

.infoBox img {
    width: 100%;
    height: fit-content;
    border-radius: 20px;
    margin-top: 100px;
}

#infoImg2 {
    object-position: 12%;
}

#infoImg3 {
    object-position: 0%;
}

@media screen and (min-width: 601px) {
    /*
    #overlap div {
        top: 50%;
        left: 75%;
        width: fit-content;
    }
    */

    #titleContainer {
        width: 100%;
        justify-content: left;
        padding-top: 100px;
    }

    #titleText {
        flex-direction: row;
        margin: 3% 8%;
        width: 50%;
        text-align: left;
    }

    #titleText p {
        font-size: 2vw;
    }

    #titleText img {
        height: 10vw;
    }

    .infoBox {
        flex-direction: row;
        margin-top: 100px;
    }

    .infoBox img {
        width: 40%;
        aspect-ratio: 1;
        height: fit-content;
        object-fit: cover;
        border-radius: 20px;
        margin: 25px;
    }

    #flippedInfoBox {
        flex-direction: row-reverse;
    }

    .textBox h1 {
        font-size: 3vw;
    }
    
    .textBox p {
        font-size: 1.4vw;
    }
}