: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-transparent: rgb(174, 140, 105, 0.2);
    --color-primary-dark: rgb(165, 132, 98);
    --color-primary-darkest: rgb(120, 92, 65);
    --color-primary-darkest-transparent: rgb(120, 92, 65, 0.2);
}

.dummyBox {
    width: 100%;
    height: 60px;
}

/* SITES */

.sites {
    position: relative;
    width: 100%;
    background: white;
}

.leftSite {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 600px;
}

.leftSiteImage {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 66%;
    height: 100%;
}

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

.leftSiteDecoration {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-width: 8px;
    border-style: solid;
    border-color: var(--color-primary-lighter-transparent);
}

.leftSiteText {
    position: absolute;
    top: 0px;
    left: 66%;
    width: 34%;
    height: 100%;
    border-width: 8px;
    border-style: solid;
    border-color: var(--color-primary-transparent);
}

.leftSiteTitle {
    position: absolute;
    left: 5%;
    top: 20px;
    width: 90%;
    height: 40px;
    /* <-- Font Family Change */
    font-family: 'Open Sans';
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary-darkest);
}

.leftSiteDescription {
    position: absolute;
    left: 5%;
    top: 80px;
    width: 90%;
    height: 380px;
    /* <-- Font Family Change */
    font-family: 'Open Sans';
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary-darkest);
}

.leftSiteDescription a {
    text-decoration: none;
    color: var(--color-primary-darkest);
}

.rightSite {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 600px;
}

.rightSiteImage {
    position: absolute;
    left: 34%;
    top: 0px;
    width: 66%;
    height: 100%;
}

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

.rightSiteDecoration {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-width: 8px;
    border-style: solid;
    border-color: var(--color-primary-lighter-transparent);
}

.rightSiteText {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 34%;
    height: 100%;
    border-width: 8px;
    border-style: solid;
    border-color: var(--color-primary-transparent);
}

.rightSiteTitle {
    position: absolute;
    left: 5%;
    top: 20px;
    width: 90%;
    height: 40px;
    /* <-- Font Family Change */
    font-family: 'Open Sans';
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary-darkest);
}

.rightSiteDescription {
    position: absolute;
    left: 5%;
    top: 80px;
    width: 90%;
    height: 380px;
    /* <-- Font Family Change */
    font-family: 'Open Sans';
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary-darkest);
}

.rightSiteDescription a {
    text-decoration: none;
    color: var(--color-primary-darkest);
}

/* PHONE LAYOUT */

@media (max-width: 600px) {

    /* MESSAGE */

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

    .messageTitle {
        position: absolute;
        width: 320px;
        height: 90px;
        text-align: center;
        /* <-- Font Size Change */
        font-size: 26px;
        font-weight: 600;
        color: #fff;
    }

    .messageDescription {
        position: absolute;
        left: 50%;
        top: 90px;
        width: 320px;
        height: 60px;
        transform: translate(-50%, 0%);
        text-align: center;
        /* <-- Font Size Change */
        font-size: 14px;
        font-weight: 500;
        color: #fff;
    }

    .messageButton {
        position: absolute;
        top: 160px;
        width: 320px;
        height: 60px;
    }

    /* SITES */

    .leftSite {
        position: relative;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 1200px;
    }

    .leftSiteImage {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 50%;
    }

    .leftSiteText {
        position: absolute;
        top: 50%;
        left: 0px;
        width: 100%;
        height: 50%;
    }

    .rightSite {
        position: relative;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 1200px;
    }

    .rightSiteImage {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 50%;
    }

    .rightSiteText {
        position: absolute;
        top: 50%;
        left: 0px;
        width: 100%;
        height: 50%;
    }
}