body {
    background-color: 000000;
}

#overlap {
    position: relative;
    width: 100%;
    height: 100vh;
}

#overlap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    will-change: transform;
    object-fit: cover;
    object-position: 50% 90%;
    padding: 0px;
    margin: 0px;
    z-index: -1;
}

#overlap div {
    display: flex;
    color: white;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000000aa;
    border-radius: 10px;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    width: 75%;
}

#overlap button {
    width: 150px;
    height: 50px;
    background-color: #407c40;
    margin-top: 20px;
    border-style: none;
    border-radius: 5px;
    box-shadow: 0 0 10px #000000 inset;
    transition: box-shadow 0.3s ease;
    color: white;
}

#overlap button:hover {
    cursor: pointer;
    box-shadow: 0 0 15px #000000 inset;
}

#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;
}

#special {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 70%;
    padding-top: 100px;
}

#special p {
    font-size: 5vw;
    font-weight: 500;
}

@media screen and (min-width: 601px) {
    #overlap div {
        top: 50%;
        left: 75%;
        width: fit-content;
    }

    #infoDiv {
        padding-top: 50px;
    }
    
    .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;
    }

    #special p {
        font-size: 2vw;
    }
}