body {
    margin: 0;
    font-family:Arial, Helvetica, sans-serif;
    position: absolute;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #b19767;
    overflow-x: hidden;
    overflow-y: scroll;
}

.page-wrapper {
    width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    background: white;
}

.prop-link {
    width: 100%;
    text-align: left;
    padding-left: 1rem;
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
}

.prop-link img {
    margin-right: 1rem;
}

header {
    background: #231f20; 
    color: #b19767;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 0.5rem;
}

article {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
}

#site-preview-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 720px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: url("../img/western-hills-image.jpg") no-repeat center center;
    background-size: cover;
}

.fader {
    animation: site-preview-fade 1s;
}

@keyframes site-preview-fade {
    from {opacity: 0.8;}
    to {opacity: 1;}
}

section {
    border-top: 0.75rem solid #b19767;
    background: #1d1d1d;
    padding-left: 2rem;
    padding-right: 2rem;
    color: white;
}

#western-hills, #woodridge-manor, #meshanticut-house, #bush-gardens {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 90%;
    border: 3px solid #b19767;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    margin-top: 1rem;
}

#western-hills:hover, #woodridge-manor:hover, #meshanticut-house:hover, #bush-gardens:hover { 
    background: #b19767;
}

footer {
    background: #b19767;
    color: white;
    width: 100vw;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (width >= 1080px) {

    article {
        flex-direction: row;
    }

    #western-hills, #woodridge-manor, #meshanticut-house, #bush-gardens {
        flex-direction: column;
        width: 225px;
    }

    .prop-link {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding-left: 0;
    }

    .prop-link img {
        margin-right: 0;
    }
}