.responsive-landing{
    width: 100%;
    min-height: 39rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.responsive-landing-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 45rem;
    
}


.top-landing{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 40%;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}


.top-img-container{
    width: 50%;
    height: 90%;
    background-color: aquamarine;
    border-top-right-radius: 8rem;
    border-bottom-left-radius: 8rem;
    border-bottom-right-radius: 8rem;
    overflow: hidden;
}
.top-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.top-button-container{
    width: 30%;
    text-align: center;
}
.responsive-button{
    font-size: 20px;
    font-weight: bold;
    font-family: cinzel;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    border: solid 2px rgb(215, 215, 215);
}



.bottom-landing{
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.bottom-left-img-container{
    width: 60%;
    height: 90%;
    border-top-right-radius: 8rem;
    border-top-left-radius: 8rem;
    border-bottom-left-radius: 8rem;
    border-bottom-right-radius: 8rem;
    background-color: aquamarine;
    overflow: hidden;
}
.bottom-left-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.bottom-right-img-container{
    width: 30%;
    height: 90%;
    border-top-right-radius: 2rem;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    overflow: hidden;
    background-color: aquamarine;
}

.bottom-right-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1201px) {
    .responsive-landing{
        display: none;
    }
}