/* RESET */
html {
box-sizing: border-box;
font-size: 16px;
height: 100%;
}

*, *:before, *:after {
box-sizing: inherit;
}

body {
margin: 0;
padding: 0;
font-weight: normal;
height:100%;
}

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

/* FONT */
@font-face {
    font-family: 'Trickster_Regular';
    src:    url('/font/Trickster/Trickster-Regular.eot');
    src:    url('/font/Trickster/Trickster-Regular.eot?#iefix') format('embedded-opentype'),
            url('/font/Trickster/Trickster-Regular.woff') format('woff'),
            url('/font/Trickster/Trickster-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
    --fancy-font: 'Trickster_Regular', 'DejaVu Serif', Georgia, serif;
}

.fancy {
    font-family: var(--fancy-font);
}

/* LAYOUT */

.wrapper {
    max-width: 60em;
    margin: 0 auto;
    padding: 2rem 1rem;
    height: 100%;
    display: flex;
    flex-direction:column;
    justify-content: space-between;
}

.site-header {
    flex-grow: 0;
}

.site-header h1 {
    font-size: 3em;
}

.site-header h1 a {
    color: inherit;
    text-decoration: none;
}

.site-footer {
    flex-grow: 0;
}

.content {
    flex-grow:1;
}

/* STYLE */

body {
    font-family: "Droid Sans", Arial, sans-serif;
    background-color: black;
    color: #efefef;
}

h1, h2 {
    font-family: var(--fancy-font);
}


.content a {
    background-color: rgba(36, 145, 134, 0.51);
    color: white;
    display: inline-block;
    text-decoration: none;
    padding: 0 0.2em;
}

.content a:hover, .content a:focus {
    background-color: rgba(36, 145, 134, 0.71);
}

.content a:active {
    background-color: rgba(36, 145, 134, 0.91);
}
