/* base, fonts etc */
body {
    overflow-y: scroll;
    margin: 0;
    padding: 0 0 3em 0;
    text-align: center;
    background-color: white;
    font-family: 'Open Sans', 'Verdana', 'Dejavu sans', sans-serif;
    font-size: 11pt;
}

h2 {
    font-weight: normal;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.5em;
    text-align: center;
    margin: 0 0 1em 0;
    position: relative;
}

h2:after {
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 100%;
    height: 8px;
    border-top: 1px solid #eee;
    background: center bottom no-repeat radial-gradient(#f6f6f6, #fff 70%);
    background-size: 100% 16px;
    content: '';
}

h2:nth-of-type(2) {
    margin: 2em auto;
}

/* links */
a {
    color: #1969CB;
    text-decoration: none;
}

a, a span, a i {
    transition: opacity 0.2s ease, color 0.2s ease, background 0.2s ease;
}

a:focus {
    opacity: .8;
    outline: 0;
}

a:hover, a:hover span {
    color: #2D7DE0;
    text-decoration: underline;
}

img {
    border: 0;
    width: 210px;
    height: 104px;
}

#main {
    margin-top: 4em;
}

.main-wrapper {
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
    padding: 0 1em;
}

/* miscellaneous */
*:first-child {
    margin-top: 0;
}

p {
    margin: 0.5em;
    text-align: center;
}