@import 'https://fonts.googleapis.com/css?family=Lato:300,400,700|Roboto+Slab:100,300,400,700|Scope+One';

body {
    font-family: "Roboto Slab", monospace;
    margin: 0;
}

h1, h2, h3 {
    font-family: "Lato", monospace;
}

p a:link {
    text-decoration: none;
    color: #F05032;
}

p a:hover {
    border-bottom: 2px solid #F05032;
}

.hero-container-small {
    color: #fff;
    background-color: #3c74c7;
    background-image: url(../images/cover.jpg);
    background-position: 100% -80%;
    background-size: cover;
    height: 40%;
}

.hero-container {
    color: #fff;
    background-color: #3c74c7;
    background-image: url(../images/cover.jpg);
    background-position: center;
    background-size: cover;
    height: 100%;
}

.hero-container:before, .hero-container-small:before {
    content: '';
    position: absolute;
    background: rgba(60, 116, 199, 0.85);
    background: linear-gradient(rgba(60, 116, 199, 1),
                                rgba(60, 116, 199, .85),
                                rgba(60, 116, 199, .85));
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.hero {
    position: relative;
}

.hero .brand {
    font-family: "Scope One", monospace;
    font-size: 250%;
    font-weight: 500;
    padding: 2% 5%;
    margin: 0;
    letter-spacing: -1px;
    z-index: 1;
    position: relative;
}

.hero .brand .logo {
    display: inline-block;
    border-right: 0.075em solid #fff;
    padding: 0.25em 1em;
    animation: logo-blink 1s step-start infinite;
    -webkit-animation: logo-blink 1s step-start infinite;
}

@keyframes logo-blink {
    50% {
        border-color: transparent;
    }
}

@-webkit-keyframes logo-blink {
    50% {
        border-color: transparent;
    }
}

.hero header {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    text-align: center;
}

.hero header h1,
.hero header h2 {
    line-height: 1em;
}

.hero header h1 {
    font-weight: 700;
    font-size: 200%;
}

.hero header h2 {
    font-size: 150%;
    margin-top: 1.5em;
}

.hero .nav {
    position: absolute;
    bottom: 0;
    text-align: center;
    font-weight: 300;
    border-radius: 0.5em 0.5em 0 0;
    background: rgba(255, 255, 255, 0.125);
}

.nav ul {
    margin: 0;
    padding: 0;
}

.nav a {
    display: inline-block;
    color: #fff;
    padding: 1em 2em;
    text-decoration: none;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

#impressum p {
    margin-top: 0px;
    margin-bottom: 0px;
}

.section {
    text-align: center;
    margin-top: 6em;
    /*margin-bottom: 4em;*/
}

.section--contact {
    background: #00966d;
    background: #303430;
    color: #fff;
    padding: 4em 0;
}

.em {
    color: #f05032;
    font-weight: 500;
}

.inverse {
    background: #f05032;
    color: #fff;
    padding-left: 0.25em;
    padding-right: 0.25em;
}

.section header h1 {
    font-size: 235%;
}

.section header h2 {
    font-family: "Roboto Slab", monospace;
    font-weight: 100;
    font-size: 150%;
}

.section p {
    margin-left: auto;
    margin-right: auto;
}

.section p em {
    font-weight: 300;
}

.weight--light {
    font-weight: 300;
}

.highlight {
    color: #f05032;
}

.email {
    font-size: 135%;
}

.avatar {
    display: inline-block;
    position: relative;
    padding: 2em 4em;
}

.avatar img {
    width: 6em;
    border: .125em solid #f05032;
    border-radius: 100%;
    box-shadow: 0 0 1em rgba(0, 0, 0, .25);
}

.avatar--caption {
    margin-top: 1em;
    font-weight: 300;
    font-size: 125%;
}

/* Larger than tablet */
@media (min-width: 750px) {
    body {
        font-size: 32px;
    }

    p {
        font-size: 125%;
    }

    .hero .brand {
        text-align: center;
    }

    .hero header h1,
    .hero header h2 {
        padding-left: 5%;
        padding-right: 5%;
    }
    .hero .nav {
        left: 5%;
        right: 5%;
    }
    .section p {
        max-width: 100%;
    }
}

/* Larger than desktop */
@media (min-width: 1000px) {
    body {
        font-size: 18px;
    }

    p {
        font-size: 100%;
    }

    .hero .brand {
        text-align: left;
    }

    .hero header h1,
    .hero header h2 {
        padding-left: 25%;
        padding-right: 25%;
    }

    .hero .nav {
        left: 17%;
        right: 17%;
    }

    .section p {
        max-width: 70%;
    }
}
