@font-face {
    font-family: 'Source Sans Pro';
    src: url('../font/Source_Sans_Pro/SourceSansPro-Regular.ttf');
}

html, body {
    height: 100%;
}

body {
    background-color: lightgray;
}

main {
    min-height: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.4;
    background-color: whitesmoke;
    color: #222;
    box-shadow: 0 0 4px 2px gray;
}

header, article, footer {
    padding: 5px 25px;
}

article {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

section {
    border-bottom: gray solid 1px;
    padding-bottom: 25px;
}

header, footer {
    color: white;
    background-color: navy;
}

h1, h3, h5 {
    line-height: 1.2
}

h1, h3 {
    font-weight: 800;
}

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

button, a.button {
    border: none;
    border-radius: 2px;
    padding: 8px 25px;
    background-color: #eee;
    color: #222;
    font-weight: 400;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),
                0 1px 5px 0 rgba(0,0,0,0.12),
                0 3px 1px -2px rgba(0,0,0,0.2);
}

.bottom-element {
    margin-top: auto;
    margin-bottom: 1em;
}

.text-right {
    text-align: right;
}

.no-border {
    border: 0;
}

.no-skip-top {
    margin-top: 0.1em;
}

.no-skip-bottom {
    margin-bottom: 0.1em;
}

.home-img {
    width: 250px;
    display: block;
    margin-left: auto;
}
