@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');
:root {
    font-size: 16px;
}


/* Standard */

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #3E3E3F;
    font: 0.813em 'Roboto', sans-serif;
    line-height: 1.5;
    text-align: left;
}

#wrapper {
    border: solid 1px #3E3E3F;
    overflow: hidden;
    position: relative;
    margin: 1rem auto;
    max-width: 750px;
    background: #fff;
    padding: 0rem 0rem 0rem;
}

a {
    color: #3E3E3F;
    text-decoration: none;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: -0.25rem 0rem 0.75rem;
    font-size: 2.55em;
    line-height: 1.2;
}

h1 small {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
}

h2 {
    font-size: 1.425em;
    line-height: 1.2;
    padding: 0rem 0rem 0.5rem;
    position: relative;
}

h2:before {
    content: '';
    position: absolute;
    top: 3px;
    left: -32px;
    width: 28px;
    height: 19px;
    background: #fff url('icon.jpg') no-repeat;
}

h3 {
    font-size: 1.3em;
    line-height: 1.2;
    padding: 0rem 0rem 0.75rem;
    font-weight: normal;
}

h1,
h2,
h3 {
    font-family: "Times New Roman", Times, serif;
}

ul {
    padding: 0rem 0rem 1rem;
    list-style: none;
}

li {
    padding-left: 1rem;
    padding-bottom: 0.1rem;
}

li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    top: -2px;
    margin-left: -1rem;
}


/* Ende Standard */


/* Header */

header {
    padding: 0rem;
    position: relative;
}

header a {
    position: absolute;
    top: 0%;
    right: 6%;
    width: 36%;
    height: 50%;
}


/* Ende Header */


/* Article */

article {
    padding: 1.25rem 1rem 0.5rem 3rem;
}

article>p:first-of-type,
h1+p {
    font-size: 1.125em;
    line-height: 1.3;
}

h1+p {
    padding-bottom: 1.25rem;
}

aside {
    float: left;
    width: 298px;
}

aside:first-of-type ul:last-of-type {
    padding-bottom: 0;
}

aside:last-of-type {
    float: right;
    width: 346px;
}

article>p:last-of-type {
    font-size: 0.625em;
    line-height: 1.3;
    padding: 0;
}


/* Ende Article */


/* Footer */

footer {
    padding: 1rem 1rem 0rem;
    background: #D6D0CC url('bg.jpg') no-repeat;
    background-size: cover;
    text-align: center;
}


/* Ende Footer */


/* Responsive */

@media only screen and (max-width:749px) {
    #wrapper {
        min-width: 200px;
        border: none;
        margin: 0 auto;
    }
    h2 {
        padding-left: 1rem;
    }
    h2:before {
        left: -0.8rem;
    }
    i br {
        display: none;
    }
    article {
        padding: 1rem 1rem 0.5rem;
    }
    aside,
    aside:last-of-type {
        float: none;
        width: 100%;
        margin: 0;
    }
    h1 {
        font-size: 1.8em;
    }
    h1 small {
        font-size: 0.6em;
    }
}


/* 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;
}