@charset "utf-8";

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

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

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 0.813em;
    line-height: 1.4em;
}

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

p {
    padding-bottom: 1rem;
}

p span {
    color: #E50045;
}

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

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    line-height: 1.2;
    margin: 0 0 0.35rem;
}

h3 {
    font-size: 1.250em;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
}

a {
    color: #0E0EFF;
    text-decoration: underline;
}

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

li {
    padding: 0 0 0 65px;
}

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

/* Main */
/* Ende Main */
/* Header */
header {
    padding: 0rem 0rem 0.5rem;
}

/* Ende Header */
/* Article */
article {
    padding: 0rem 0rem 0rem;
}

/* Ende Article */
/* Footer */
footer {
    padding: 0rem 0rem 0rem;
}

/* 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:934px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }

    p {
        text-align: left;
    }

    li {
        padding-left: 40px;
    }

    ul li:before {
        margin-left: -20px;
    }
}

/* Ende Responsive */