* {
    box-sizing: border-box;
}

html { height: 100%; }

body {
    background-color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 70%;
    color: #444;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 375px) {
    body { font-size: 80%; }
}

@media screen and (min-width: 550px) {
    body { font-size: 100%; }
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

a:not(.button):hover { text-decoration: underline; }

.hidden {
    position: absolute;
    top: -999em;
    left: -999em;
}

.bold { font-weight: bold; }
.italic { font-style: italic; }

address {
    font-style: normal;
    font-weight: 300;
    font-size: 1.25em;
    line-height: 1.3;
    margin-bottom: 1em;
}

.button {
    background: #ffff00;
    background: linear-gradient(to bottom, #ffff00 0%, #ffa035 100%);
    box-shadow: 0px 1px 1px 0px rgb(0 0 0 / 50%), inset 0px 0px 0px 1px rgb(255 255 0 / 50%);
    border-radius: 6px;
    border: 1px solid black;
    font-weight: bold;
    font-size: 2em;
    display: inline-block;
    text-align: center;
    padding: 1.875rem 2.5rem;
    transition: .2s;
}
.button:hover { opacity: .9; }

p {
    line-height: 1.5;
    font-size: 1.25em;
    font-weight: 300;
    margin: 0 0 1em 0;
}
p:last-child { margin-bottom: 0; }

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

em {
    font-style: normal;
    font-weight: bold;
}

.container {
    max-width: 960px;
    margin: 0 auto;
}

.center { text-align: center; }

.site-header {
    padding: 1.3em;
}

.site-header .logo {
    display: block;
    max-width: 150px;
    margin: 0 auto;
}

.site-content {
    padding: 1em 1.5rem;
    margin-top: 1.5em;
    margin-bottom: 2em;
}

.site-content a {
    color: #2e82bc;
}

.site-content h1 {
    font-size: 2.5em;
    color: #749a2d;
    margin: 0 0 .75em 0;
}

.site-content h2 {
    font-size: 2em;
    margin: 0 0 .5em 0;
}

.site-content h3 {
    font-size: 1.25em;
    margin: 0 0 .5em 0;
}

.site-footer {
    background: #ececec;
    padding: 2em 1.5rem;
    margin-top: auto;
}

.site-footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
}

.site-footer p {
    font-size: inherit;
    line-height: normal;
    margin: 0;
}

.site-footer ul {
    display: flex;
    flex-wrap: wrap;
    padding-top: .5em;
    margin: 0;
}

.site-footer li:first-child a {
    border-right: 2px solid #aaa;
    padding-right: .5em;
    margin-right: .5em;
}

.site-footer a.active { opacity: .5; }
.site-footer a.active:hover { text-decoration: none; }