* {
    outline: none;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    height: 100%;
}

body {
    background-image: url("../img/background.jpg");
    background-size: auto 100%;
    background-color: #000000;
    background-position: center center;
    background-repeat: no-repeat;

    font-family: 'Lato', sans-serif;
    color: #FFFFFF;
    font-size: 14px;
}

#content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;

    padding-bottom: 2em;
}

a {
    color: #FFFFFF;
}

#logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 30%;
    max-width: 200px;
    margin: 20px;
}

#logo img {
    width: 100%;
}

#navigation {
    z-index: 1000;
    position: fixed;
    top: 0;
    height: 50px;
    left: 0;
    width: 100%;
    text-align: right;
}

#navigation a {
    display: inline-block;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    margin: 20px;
}

h1 {
    font-family: 'Lato';
    font-weight: 300;
    font-size: 2.4em;
    margin: 0;
    padding: 0;
}

div.divider {
    display: inline-block;
    width: 80px;
    height: 1px;
    background-color: #FFFFFF;
    margin: 10px;
}

div.logo-portrait {
    max-width: 220px;
    margin: 1rem auto;
}

div.logo-portrait img { 
    width: 100%;
}

p {
    font-weight: 900;
    font-size: 2.4em;
    margin: 0;
    padding: 0;
}

.bagger {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/bagger.png");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

@media all and (max-width: 800px) {
    body {
        font-size: 12px;
    }

    #navigation a {
        margin: 20px 10px;
    }
}

@media all and (max-width: 400px) {
    body {
        font-size: 10px;
    }
}