@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font: 1em Arial, sans-serif;
    line-height: 1.3;
}

#wrapper {
    position: relative;
    max-width: 825px;
    margin: 1rem auto;
    border: 2px solid #5A6B89;
    background: #fff url('../images/bg.jpg') no-repeat;
    overflow: hidden;
    padding: 3.5rem 3rem 0;
    text-align: left;
}

a {
    color: #000;
    text-decoration: none;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 21.5rem 0.5rem;
    font-size: 1.75em;
    line-height: 1.5em;
    color: #fff;
    text-shadow: 3px 3px 4px #3c6093;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    line-height: 1.2em;
    margin-bottom: 0.1rem;
    color: #425473;
}

h3 {
    font-size: 1.5em;
    line-height: 1.2em;
    margin-bottom: 0rem;
    display: none;
    background: #EC1E2B;
    padding: 0.5rem;
    color: #fff;
}

h4 {
    font-size: 1.5em;
    line-height: 1.1em;
    margin: 0.5rem 0 1.35rem;
    color: #425473;
}

h1, h4, strong {
    font-family: 'Arial Black', sans-serif;
}

ul {
    padding: 0rem 0rem 1.5rem;
    list-style: none;
    font-style: italic;
    line-height: 1.4;
}

li {
    padding-left: 1.75rem;
    position: relative;
}

li:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 5px;
    width: 8px;
    height: 9px;
    background: #47618A;
}

i {
    font-style: normal;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

/* Header */
header {
    padding: 0rem;
}

header a img {
    position: absolute;
    right: 1rem;
    bottom: 8.5rem;
}

header>img {
    display: none;
}

/* Ende Header */
/* Article */
article {
    padding: 0rem;
}

/* Ende Article */
/* Footer */
footer {
    padding: 1rem 3rem;
    margin: 0 -3rem;
    background: #425473;
    color: #fff;
}

footer a {
    color: #fff;
}

/* Ende Footer */
@media only screen and (max-width: 824px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem 1rem 0;
        background: #fff;
        font-size: 0.938em;
    }

    p {
        text-align: left;
    }

    i br, article br {
        display: none;
    }

    h3 {
        display: block;
    }

    h1 {
        background: #2367AB;
        margin: 0 0 1.5rem;
        padding: 0.5rem;
        line-height: 1.3;
    }

    header a img {
        position: static;
        width: 200px;
    }

    header>img {
        display: block;
        margin-top: 1rem;
    }
}