:root {
    --color-primary-lightest: rgb(248, 244, 239);
    --color-primary-lighter: rgb(239, 236, 231);
    --color-primary-lighter-transparent: rgb(239, 236, 231, 0.2);
    --color-primary: rgb(174, 140, 105);
    --color-primary-dark: rgb(165, 132, 98);
    --color-primary-darkest: rgb(120, 92, 65);
    --color-primary-darkest-transparent: rgb(120, 92, 65, 0.2);
}

.apartments {
    position: relative;
    width: 100%;
}

/* APARTMENTS */

.apartment {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.apartment img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0.0, 0.0, 0.0, 0.2);
}

/* MESSAGE */

.message {
    position: absolute;
    left: 50%;
    top: 85%;
    width: 600px;
    height: 120px;
    transform: translate(-50%, -85%);
}

.messageTitle {
    position: absolute;
    width: 600px;
    height: 40px;
    text-align: center;
    /* <-- Font Family Change */
    font-family: 'Open Sans';
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.messageDescription {
    position: absolute;
    left: 0px;
    top: 40px;
    width: 600px;
    height: 30px;
    text-align: center;
    /* <-- Font Family Change */
    font-family: 'Open Sans';
    font-size: 18px;
    font-weight: 500;
    color: white;
}

.messageButton {
    position: absolute;
    left: 0px;
    top: 70px;
    width: 600px;
    height: 50px;
}

.messageButton img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90px;
    height: 30px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* PHONE LAYOUT */

@media (max-width: 600px) {

    /* MESSAGE */

    .message {
        position: absolute;
        left: 50%;
        top: 85%;
        width: 320px;
        height: 120px;
        transform: translate(-50%, -85%);
    }

    .messageTitle {
        position: absolute;
        width: 320px;
        height: 40px;
        text-align: center;
        /* <-- Font Family Change */
        font-family: 'Open Sans';
        font-size: 20px;
        font-weight: 500;
        color: white;
    }

    .messageDescription {
        position: absolute;
        left: 0px;
        top: 40px;
        width: 320px;
        height: 30px;
        text-align: center;
        /* <-- Font Family Change */
        font-family: 'Open Sans';
        font-size: 16px;
        font-weight: 400;
        color: white;
    }

    .messageButton {
        position: absolute;
        left: 0px;
        top: 70px;
        width: 320px;
        height: 50px;
    }

    .messageButton img {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 90px;
        height: 30px;
        transform: translate(-50%, -50%);
        cursor: pointer;
    }
}