@charset "utf-8";

:root {
    font-size: 16px;
}

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

html {
    min-height: 100%;
}

body {
    color: #000;
    font: 1.125em "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.3;
}

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

a {
    color: #000;
    text-decoration: none;
}

p {
    padding-bottom: 0.5rem;
}

p span {
    color: #EC519E;
}

h1 {
    margin: 0.6rem 0rem 0.5rem 0rem;
    padding: 0rem 0rem 0rem;
    font-size: 1.8em;
    line-height: 1.1em;
    float: left;
    font-weight: 900;
}

h1 small {
    font-size: 0.75em;
    line-height: 1.2;
    display: block;
}

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

ul {
    padding: 0rem 0rem 0.5rem 0rem;
    list-style: none;
}

li {
    padding-left: 1rem;
}

/*25A0 - square / 2010 - dash / 2212 - long dash*/
li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.3em;
    line-height: 1;
    position: relative;
    float: left;
    top: 0px;
    margin-left: -1rem;
}

/* Ende Standard */
/*main*/
/*End main*/
/* Header */
header {
    padding: 0rem 0rem 0.35rem;
}

header img {
    float: right;
    width: 225px;
}

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

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

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

    br {
        display: none;
    }
}

/* Ende Responsive */
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;
}