html, body {
    background-color: AliceBlue;
    min-height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header img {
    margin-left: 50%;
    translate: -25px;
}

.content {
    background-color: AliceBlue;
    flex: 400px;
}

.footer {
    background-color: #e17000;
    min-height: 1.5rem;
    padding: 0 1rem;
}

.header-bar {
    background-color: #e17000;
    padding: 0.5rem 0px;
    display: flex;
    align-items: center;
    color: white;
    font-family: "RO Sans",Calibri,sans-serif;
    font-size: 1.4rem;
}

.header-bar a {
    color: white;
    text-decoration: none;
}

.latest {
    color: white;
    font-size: x-small;
    font-weight: lighter;
    display: inline;
}

.acacia {
    height: 24px;
    width: auto;
    float: right;
    margin: 2px 0;
}

/* reduce padding on small screens */
@media screen and (max-width: 800px) {
    .footer {
        padding: 0 0.5rem;
        min-height: 2rem;
    }
}