﻿@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    color: #656453;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875em;
    line-height: 1.431em;
}

#wrapper {
    position: relative;
    max-width: 54.375rem;
    margin: 1rem auto;
    border: none;
    padding: 0.5rem 0rem;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 0 23px #A6A6A6;
}

p + p {
    margin: 1rem 0 0 0;
}

h1 {
    text-align: center;
    font-size: 1.992em;
    line-height: 1em;
    color: #f48522;
}

h1 span {
    font-weight: normal;
}

h2 {
    font-size: 1.5em;
    line-height: 1.231em;
    color: #f48522;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.231em;
    line-height: 1.231em;
    margin-bottom: 0;
}

h4 {
    font-size: 1.65rem;
    margin: 1rem 0;
    line-height: 1.5;
}

h4 span {
    font-size: 1rem;
}

h5 {
    margin: 2rem auto 1rem;
    display: flex;
    justify-content: center;
}

h5 a:link,
h5 a:active,
h5 a:visited {
    width: 15rem;
    font-size: 1.125rem;
    text-align: center;
    background-color: #f48522;
    padding: 0.75rem 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: normal;
}

h5 a:hover {
    color: #e8eaf4;
}

a:link,
a:active,
a:visited {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: underline;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
    border: none;
}

hr {
    border: none;
    border-top: 0.063rem solid #000;
}

ul {
    padding-left: 1rem;
}

li {
    padding-bottom: 0.2rem;
}

article {
    padding: 1rem 2.5rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    margin-left: 1.5rem;
}

header section:first-of-type {
    width: 65%;
}

header section:first-of-type p img {
    display: inline-block;
    vertical-align: middle;
}

header section:last-of-type {
    width: 33%;
}

figure {
    margin: 1.5rem 0 0;
    display: block;
}

figure iframe {
    width: 100%;
    height: 27.75rem;
    display: block;
}

nav {
    padding: 2.5rem 1.5rem;
}

nav img {
    margin-left: auto;
    width: 13rem;
}

aside {
    padding: 1.5rem;
    background-color: #fffae3;
}

aside:first-of-type {
    margin-bottom: 2.5rem;
}

article div {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    margin-bottom: 1.5rem;
}

article div iframe {
    border: none;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

footer {
    background-color: #fffae3;
    text-align: center;
    padding: 1rem;
}

ul + p {
    margin-top: 1rem;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

/* Responsive */
@media only screen and (max-width:40rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.625rem;
    }

    article {
        padding: 0;
    }

    header {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 0;
        margin-left: 0;
    }

    header section:first-of-type {
        width: 100%;
    }

    header section:last-of-type {
        width: 100%;
    }

    header section:last-of-type img {
        width: 13rem;
    }

    figure {
        margin: 1.5rem 0 0;
    }

    figure iframe {
        width: 100%;
        height: 60vw;
        display: block;
    }


    nav {
        padding: 1.5rem 0.75rem;
    }

    nav:first-of-type {
        padding: 1.5rem 0;
    }

    nav img {
        width: 13rem;
        margin: 0 auto;
    }

    aside {
        padding: 1.5rem 0.75rem;
    }

    a:link,
    a:active,
    a:visited {
        font-size: 1rem;
    }

    a:hover {
        text-decoration: none;
    }
}

/* Ende Responsive */
