@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Fugaz+One|Roboto');

/* Enkel CSS-reset */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
    padding: 0;
}

body {
    background: #EEE;
}
html, body {
    width: 100%;
    height: 100%;
}
.container {
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
    font-family: 'Roboto', sans-serif;
    width: 800px;
    margin: 0 auto;
    background: #FFF;
    box-shadow: 0 0 30px #8f8f8f;
}
header {
    padding: 30px;
    text-align: center;
    font-family: 'Fugaz One', cursive;
}
header h1 {
    font-size: 80px;
    color: #5D0B0D;
}
header li {
    display: inline;
}
header li a {
    font-size: 25px;
    color: #5D0B0D;
    text-decoration: none;
    padding: 5px;
}
header li a:hover {
    border-bottom: 3px solid #5D0B0D;
}
header li a.active {
    border-bottom: 3px solid #5D0B0D;
}

main {
    padding: 40px;
}
main h2 {
    text-align: center;
    font-size: 50px;
    color: #FFF;
    text-shadow: 0 1px 4px #000;
    margin: 10px 0;
}
main figure {
    width: 60%;
    box-shadow: 0 0 4px #000;
    padding: 20px;
    margin: 20px auto;
    background: #FFF;
}
main figure img {
    width: 100%;
}
main p {
    margin: 10px 0;
    text-shadow: 0 1px 1px #FFF;
}

footer {
    padding: 0 40px 40px 40px;
    text-align: center;
}
footer p {
    text-shadow: 0 1px 1px #FFF;
    font-style: italic;
}