@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Spartan: 400,600,700&display=swap');

/* Standard */
* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Spartan', Arial, sans-serif;
    font-size: 0.875em;
    line-height: 1.4em;
}

#wrapper {
    position: relative;
    max-width: 480px;
    margin: 1rem auto;
    border: solid 2px #000000;
    background: #fff url(bg.jpg) no-repeat left top;
    overflow: hidden;
    padding: 1.5rem 1.5rem 0.3rem 3.8rem;
}

p {
    padding-bottom: 1rem;
}

strong {
    font-weight: 600;
}

h1 {
    margin: 0rem 0rem 1rem;
    font-size: 1.252em;
    line-height: 1.3em;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    line-height: 1.2em;
    margin-bottom: 0;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

ul {
    padding: 0px 0px 0px 0px;
    list-style-image: url();
    list-style: none;
}

li {
    padding-left: 20px;
}

ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.000em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -20px;
}

/* Hebt Float left/right auf */
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

/* Ende Standard */

/* Header */
header {
    padding: 0.5rem 0rem 1rem;
}

header p {
    color: #47679E;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1.3;
}

header img {
    float: right;
}

/* Ende Header */

/* Article */
article {
    padding: 0;
}

/* Ende Article */

/* Footer */
footer {
    padding: 0;
}

footer p {
    padding-left: 6.5rem;
}

footer img {
    position: absolute;
    left: 55px;
    bottom: 42px;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:479px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem 1rem 0rem 1rem;
        background: #fff;
    }

    header img {
        float: none;
        margin-bottom: 1rem;
    }

    header {
        padding-bottom: 0;
    }

    header p {
        font-size: 1.312em;
    }

    i br {
        display: none;
    }

    footer p {
        padding-left: 0;
    }

    footer img {
        position: static;
    }

}

/* Ende Responsive */
