@charset "utf-8";

/* Standard */

:root {
    font-size: 16px;
}

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

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 710px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem;
    padding-top: 0;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 1rem;
    font-size: 1.692em;
    line-height: 1.1em;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0;
}

a {
    color: #0563C1;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}

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

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

li {
    padding-left: 1.6rem;
}

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


/* Hebt Float left/right auf */

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}


/* Ende Standard */


/* Header */

header {
    padding: 0rem 0rem 0rem;
}


/* Ende Header */


/* Article */

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

header,
article p,
h1 {
    text-align: center;
}

article p:last-of-type {
    text-align: left;
    padding-bottom: 3rem;
}

article p:first-of-type {
    padding-bottom: 3rem;
}

article>strong {
    display: block;
    padding-bottom: 1rem;
}


/* Ende Article */


/* Footer */

footer {
    padding: 0rem 0rem 0rem;
}

footer p {
    text-align: center;
    line-height: 2em;
    padding-bottom: 0;
}


/* Ende Footer */


/* Responsive */

@media only screen and (max-width:708px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        font-size: 0.875em;
        line-height: 1.3em;
    }
    header,
    article p,
    h1,
    footer p {
        text-align: left;
    }
    article p:first-of-type,
    article p:last-of-type {
        padding-bottom: 1rem;
    }
    ul {
        padding-left: 0;
    }
    li {
        padding-left: 1rem;
    }
    ul li:before {
        margin-left: -1rem;
    }
}


/* Ende Responsive */