﻿@charset "utf-8";

/* Standard */

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

a:hover,
a:active,
a:visited {
    text-decoration: underline;
}

u {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    color: #212529;
    font-family: 'Roboto', sans-serif;
    font-size: .812rem;
    line-height: 1.4;
    text-align: left;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: solid thin #000;
    /* für Hintergund
	background:url() top left no-repeat;
	background-size:100%;
	*/
    background-color: #fff;
    overflow: hidden;
}

p {
    margin: 0 0 0.625rem;
}

h1 {
    text-align: left;
    font-size: 1.462rem;
    line-height: 1.2;
    margin: .937rem 0 1.875rem;
}

h1 span {
    font-size: 0.631em;
    font-weight: normal;
}

h2 {
    font-size: 1.125rem;
    line-height: 1.4;
    margin: 0 0 0;
    color: #1561ac
}

ul {
    list-style: none;
    margin: 0 0 1.562rem;
    padding: 0;
}

ul li {
    padding-left: 3.125rem
}

ul li span {
    font-size: 1.125rem;
    color: #1561ac;
    font-weight: bold;
}

ul li:before {
    content: "\2022"
        /* ❖ *  ● ■ ▪ ◆ ❖ ✔ » ▸ ▶ ► ➤ ➢ ➧ ➭ ➽ ➲ 》➠ ◢ ◥ ☛ */
    ;
    float: left;
    margin-left: -1.562rem;
    font-size: 1.375rem;
    line-height: 0.9;
    color: #212529;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    position: relative;
}

header a {
    margin: 0 auto;
    display: block;
    position: absolute;
    width: 7%;
    height: 20%;
    right: 1.5%;
    bottom: 4.5%;
}

article {
    padding: 1.25rem 3.75rem 0 3.75rem;
}

footer {
    padding: 0px 3.75rem;
    position: relative;
}

footer > p a {
    position: absolute;
    left: 3.75rem;
    top: .625rem;
    border-radius: .312rem;
    padding: .625rem;
    background-color: #1561ac;
    color: #fff;
    font-size: .875rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.2px;
}

footer > p a:hover {
    color: #212529;
    background-color: #FAE947;
    text-decoration: none;
}

footer section {
    float: right;
    width: 25%;
    margin: .625rem 0 1.25rem;
}

@media only screen and (max-width:49.937rem) {
    #wrapper {

        margin: 0 auto;
        border: 0;
        padding: 0.625rem;
    }

    a {
        font-weight: bold;
    }

    p,
    ul,
    h1 {
        margin: 0 0 10px;
    }

    article,
    footer {
        padding: 0;
    }

    footer > p a {
        position: static;
        left: 5%;
        top: 5%;
    }

    footer section {
        float: none;
        width: 100%;
        margin: .625rem 0;
    }

    @media only screen and (max-width:479px) {
        h1 {
            font-size: 1.611em;
        }

        h2 {
            font-size: 1.01rem;
            line-height: 1.4;
            margin: 0 0 0;
            color: #1561ac
        }
    }