/* Colors:
 * #1C2B4B - Space cadet
 * #698996 - Air Force blue
 * #FFFCF7 - Baby powder
 * #E4F0D0 - Nyanza
 * #C84630 - Jasper
 */

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background: #FFFCF7;
}

.header {
    border-top: 1em solid #1C2B4B;
    background: #698996;
    height: 2em;
}

.section {
    max-width: 40em;
    margin: 0 auto;
    padding: 1em;
}

img.logo {
    width: 100%;
}

a, a:visited, a:active {
    color: #698996;
}

a:hover {
    color: #1C2B4B;
}

a.get-button {
    display: inline-block;
    padding: 0.5em 1em;
    margin: 1em auto;
    background: #1C2B4B;
    color: #FFFCF7;
    text-align: center;
    text-decoration: none;
    border-radius: 1em;
    box-shadow: 0 4px #698996;
    transition: background 0.3s, box-shadow 0.3s;
}

a.get-button:hover {
    background: #698996;
    box-shadow: 0 2px #1C2B4B;
}

a.get-button:active {
    background: #1C2B4B;
    box-shadow: 0 1px #1C2B4B;
}
