html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0 0 55px 0;
    font-family: 'Helvetica Neue', Helvetica, Verdana, sans-serif;
    font-size: 1.3rem;
    line-height: 1.7rem;
    background-color: #fdfdfd;
    color: #1f1f1f;
}

h1 {
    margin-top: 15px;
    font-size: 1.5em;
}

h2 {
    font-size: 1.25em;
    border-bottom: 2px solid #B81F02;
}

img {
    border: 0;
}

a {
    color: #1A4F00;
}

a:hover {
    color: #A2C294;
    text-decoration: none;
}

button {
    font-size: 1.2rem;
}

#divHeader {
    background-color: #dff0d8;
    border-bottom: 1px solid #000;
    font-family: Georgia, Verdana, sans-serif;
    font-size: 1.75rem;
    padding: 12px 0;
}

#divHeader a {
    color: #000;
    text-decoration: none;
}

#divFooter {
    margin-top: 75px;
    font-size: 1rem;
    text-align: center;
}

.content {
    margin: 0px auto;
    max-width: 900px;
    text-align: left;
}

.flex {
    display: flex;
    align-items: center;
    min-height: 110px;
}

.flex>div:first-child {
    margin-right: 15px;
}

@media (max-width: 950px) {
    .content {
        width: 100%;
        margin: 0 3%;
    }
}