@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Verdana, Arial, sans-serif;
    font-size: 0.875em;
    line-height: 1.3em;
}
#wrapper {
    position: relative;
    max-width: 820px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #253F8E;
    background-color: #fff;
    overflow: hidden;
    padding: 0rem;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0rem 0rem 0.25rem;
    font-size:1.95em;
    line-height: 1.1em;
}
h1 small {
    font-size: 0.57em;
    display: block;
}
h1 + p {
    font-size: 1.4em;
    line-height: 1.3em;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0.1rem;
}
h1, h2 {
    color: #00AEEF;
}
a {
    color: #00AEEF;
    text-decoration: none;
}
a u {
    color: #000;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0rem 0rem 0.8rem 0rem;
    list-style-image: url();
    list-style: none;
}
li {
    padding-left: 0.8rem;
}
ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.000em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -0.8rem;
}

/* Hebt Float left/right auf */
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

/* Ende Standard */

/* Header */
header {
    padding: 0.5rem 0rem 1.5rem;
}

/* Ende Header */

/* Article */
article {
    padding: 0rem 0.7rem 0rem;
}
article p:nth-of-type(4) {
    text-align: justify;
}
article p:nth-last-of-type(6) a {
    color: #000;
}
footer {
    padding: 0rem 2rem 1rem 0.7rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    line-height: 1.15em;
}
footer a:first-of-type {
    margin: 0 4.5rem 0 6rem;
}
footer > strong {
    display: inline-block;
    margin-right: 0.5rem;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:820px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    article p:nth-of-type(4) {
        text-align: left;
    }
    article br {
        display: none;
    }
    footer {
        justify-content: space-between;
        flex-wrap: wrap;
    }
    footer strong {
        display: block;
        margin-bottom: 0.5rem;
    }
    footer img:first-of-type {
        margin: 1rem;
    }
}
@media only screen and (max-width:425px) {
    h1 {
        font-size: 1.5em;
        line-height: 1.2;
    }
    h1+p, h1 + p + p {
        font-size: 1.2em;
    }
}

/* Ende Responsive */
