.ambiance {
    position: relative;
    margin-top: 100px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 80vh;
    gap: 22rem;

}


.ambiance-img {
    position: relative;
    background-image: url(../images/outdoors.png);
    width: 55%;
    min-height: 80vh;
    border-radius: 25em 0px 0px 25em;
    background-size: cover;
    flex-shrink: 0;
}

.ambiance-sub-text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    left: 20em;
    text-align: right;
    padding: 2em;
    gap: 0.5em;
}

.cozy-text {
    font-weight: 400;
    font-size: 4em;
    font-family: "Righteous";
}

.ambiance-remark-text {
    margin: 0;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.4em;
}

@media screen and (max-width: 1100px)  {

    .ambiance-sub-text {
        position: absolute;
        background-color: black;
        border-radius: 5em 0 0 5em;
    }
    .ambiance-img {
        min-width: 80%;
        min-height: 75vh;
    }
    .cozy-text {
        font-size: 3em;
    }
}