* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div#header > h1 {
    font-size: 3.5em;
    font-weight: 700;
}

h1 {
    font-size: 38px;
    font-weight: 700;
}

@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

body, div, p, a {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
}

p {
    text-align: justify;
}

div#content {
    margin-top: 70px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: #1B2B4F;
    color: white;
    border-bottom: 1px solid white;
    z-index: 3;
}

nav.transitioned {
    transition: .2s all ease-in;
}

nav.up70 {
    top: -70px;
}

nav.up80 {
    top: -80px;
}

nav.small {
    height: 70px;
}

nav.big {
    height: 80px;
}

nav img#logo {
    height: 80px;
    transition: .4s height;
}

nav img#logo.small {
    height: 70px;
}

nav div#menu-icon {
    padding: 2px 6px 6px 6px;
    display: none;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid white;
}

nav div#menu-icon div {
    background-color: white;
    width: 100%;
    height: 1px;
    margin: 5px 5px 5px 0;
}

@media screen and (max-width: 690px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-content: center;
    }

    nav img#logo {
        margin-left: 30px;
    }

    nav a:not(.home-link) {
        display: none;
    }

    nav div#menu-icon {
        margin-right: 20px;
        display: block;
    }

    div#content {
        margin-top: 60px;
    }
}

nav div#nav-div {
    display: flex;
    align-items: center;
}

nav div#nav-div > a:first-child {
    margin-left: 10px;
}

nav a {
    margin: 0 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: .2s all;
    font-size: .8em;
    font-weight: 700;
}

nav a:hover {
    color: white;
}

nav a.active, div.footer a.active {
    color: white;
}

div.filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 4;
}

div.menue {
    position: fixed;
    top: 0;
    left: 0;
    width: 60%;
    height: 100vh;
    background-color: white;
    z-index: 5;
}

div.menue a {
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    color: grey;
    padding: 20px;
    border-bottom: 1px solid rgba(125, 125, 125, 0.3);
    font-size: .8em;
}

div.menue a:first-child {
    margin-top: 20px;
}

.uppercase {
    text-transform: uppercase;
}

.special-button-white {
    margin: 10px 0;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    text-transform: uppercase;
    padding: 8px 25px;
    color: #1F294F;
    background-color: white;
    border: 2px solid #1F294F;
    transition: .3s background-color;
}

.special-button-white:hover {
    cursor: pointer;
    background-color: #1F294F;
    color: white;
}

.special-button-blue {
    margin: 10px 0;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    text-transform: uppercase;
    padding: 8px 25px;
    color: white;
    background-color: #1F294F;
    border: 2px solid white;
    transition: .3s background-color;
}

.special-button-blue:hover {
    cursor: pointer;
    background-color: white;
    color: #1F294F;
}

div.footer {
    font-size: 13px;
    padding: 10px;
    margin-top: 30px;
    background-color: #1F294F;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

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

div.footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12px;
}

div.footer a:hover {
    color: white;
}

div.footer p {
    text-align: center;
    margin: 5px 0;
    display: block;
}

div.footer div.logo-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 30px;
}

div.footer div.logo-container img {
    height: 20px;
}

div#logged-in {
    margin: 100px auto 0 auto;
    width: 100%;
    max-width: 900px;
    color: #1F294F;
    background-color: white;
    border: 3px solid #1F294F;
    font-size: 20px;
    padding: 15px;
}

div#logged-in a {
    color: #1F294F;
    text-decoration: none;
    float: right;
}