@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i');

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #005B78;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 500px;
    border: solid 2px #005B78;
    background: #fff;
    padding: 0;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 0rem;
    padding: 0rem 0rem 0rem;
    font-size: 1.9em;
    line-height: 1.1em;
    color: #207A97;
}

h1 span {
    font-size: 0.7em;
}

h1+p,
h2+p {
    padding-bottom: 1.5rem;
    font-size: 1.188em;
}

h2 {
    padding: 0rem 0rem 0rem;
    font-size: 1.9em;
    line-height: 1.1em;
    color: #207A97;
}

h3 {
    font-size: 1em;
    line-height: 1.2;
    margin: 0 0 0 0;
}

a {
    color: #005B78;
    text-decoration: none;
}

ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style-image: url();
    list-style: none;
}

li {
    padding: 0 0 0 12px;
}

ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.2em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -12px;
}

/* Main */

/* Ende Main */

/* Header */
header {
    padding: 1.5rem 0rem 0rem;
}

/* Ende Header */

/* Article */

article {
    padding: 2rem 3rem 0rem;
}

hr {
    border: none;
    border-bottom: 2px solid #005B78;
    border-radius: 1px;
    margin-bottom: 1rem;
}

article p:last-of-type {
    font-size: 1.063em;
    line-height: 1.3;
    padding-bottom: 0.5rem;
}

article img{
    display: block;
    text-align: center;
}

/* Ende Article */

/* Footer */
footer {
    padding: 0.5rem 1rem;
    background: #005B78;
    font-size: 1.5em;
    line-height: 1.3;
    text-align: center;
}

footer a {
    color: #fff;
}

/* Ende Footer */
a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Hebt Float left/right auf */
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

/* Ende Standard */

/* Responsive */
@media only screen and (max-width:499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        font-size: 0.875em;
        line-height: 1.3;
    }

    article {
        padding: 1rem 1rem 0;
    }

    i br {
        display: none;
    }

    figure {
        margin-bottom: -4px;
    }

}

/* Ende Responsive */
