html, body {
    background: rgba(245, 240, 231, 0.06);
}

body {
    text-align: center;
    font-size: 16px;
}

.header {
    position: relative;
    top: 0;
    width: 100%;
    padding: 20px 25px 10px;
    background-color: #8dae7f;
    border-bottom: 5px solid #648564;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(150,148,150,1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(150,148,150,1);
    box-shadow: 0px 0px 5px 0px rgba(150,148,150,1);
    min-height: 10vh;
}

.logo-wrapper {
    max-width: 960px;
    display: inline-block;
}

.main-content {
    padding-top: 5vh;
    padding-bottom: 20vh;
    min-height: 70vh;
    text-align: left;
}

.page-header h1 {
    text-shadow: 0px 2px 1px rgba(0,0,0,.2);
    text-rendering: optimizeLegibility;
    font-weight: bold;
}

.horse-holder {
    text-align: right;
}
.horses {
    width: 200px;
}

.footer {
    position: fixed;
    border-top: 3px solid #E4D9CC;
    bottom: 0;
    width: 100%;
    background: #F7EEDF;
    padding: 15px 0;
    min-height: 7vh;
}

.footer-img-wrapper {
    display: inline-block;
}
.footer-img-wrapper img {
    opacity: 0.2;
    max-height: 30px;
}
@media only screen and (max-width : 768px) {
    .main-content, .horse-holder {
        text-align: center;
    }
}
@media only screen and (max-width : 480px) {
    .header, .footer, .footer-img-wrapper {
        padding: 5px;
    }

    .footer {
        min-height: 5vh;
    }
}