@charset "utf-8";

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

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

html {
    min-height: 100%;
}

body {
    color: #231F20;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.4em;
    line-height: 1.4em;
}

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

p {
    padding-bottom: 0.5rem;
}

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

h1 span {
    font-size: 0.75em;
    font-weight: normal;
}

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

a {
    color: #84C467;
    text-decoration: underline;
}

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 */
/* Header */
header {
    padding: 1rem 1rem 0rem;
    background: #83C368;
    color: #FFF;
    font-size: 0.84em;
}

header p {
    margin: -.5rem 0rem 0rem 3.1rem;
}

/* Ende Header */
/* Article */
article {
    padding: 0.5rem 1rem 0rem;
    text-align: center;
}

/* Ende Article */
/* Footer */
footer {
    padding: 0rem 1rem 0rem;
    text-align: center;
}

/* Ende Footer */
/* Responsive */
@media only screen and (max-width:389px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }

    header p {
        margin: 0rem;
    }

    br {
        display: none;
    }

    footer br {
        display: block;
    }
}

/* Ende Responsive */