@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;700&display=swap');

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

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

html {
    min-height: 100%;
}

body {
    color: #FFF;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1em;
    line-height: 1.2em;
}

#wrapper {
    position: relative;
    max-width: 975px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('bg.jpg') no-repeat top left;
    overflow: hidden;
    padding: 0rem;
}

p {
    padding-bottom: 0rem;
}

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

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

h2 {
    font-size: 1.4em;
    line-height: 1.3em;
    margin-bottom: 0;
    color: #231F20;
}

h3 {
    font-size: 2.5em;
    line-height: 1.1em;
    margin-bottom: 2rem;
    color: #231F20;
}

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

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

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

li {
    padding-left: 0rem;
}

ul li:before {
    content: "_";
    display: inline-block;
    font-size: 1.000em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -1.3rem;
}

/* Hebt Float left/right auf */
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

/* Ende Standard */
/* Header */
header {
    padding: 2rem 2rem 0rem;
}

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

article p:nth-of-type(1) {
    font-size: 1.05em;
}

/* Ende Article */
/* Footer */
footer {
    padding: 26rem 0rem 2rem;
    position: relative;
    font-size: 1.3em;
    line-height: 1.2em;
}

footer section {
    display: none;
}

footer p:last-of-type {
    margin: 1rem 0rem 0rem 4.5rem;
}

footer p {
    margin-left: 2rem;
}

footer>a img {
    display: none;
}

footer>a:last-of-type {
    position: absolute;
    width: 30%;
    right: 4%;
    top: 78%;
    height: 15%;
}

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

    header {
        padding: 1rem;
    }

    article {
        padding: 0rem 1rem 0rem;
    }

    footer {
        padding: 0;
    }

    footer>a:last-of-type {
        display: none;
    }

    footer>a img,
    footer section {
        display: block;
    }

    footer {
        background: #2E2228;
        margin-bottom: -1rem;
        padding: 0rem 0rem 1rem;
    }

    footer p {
        margin: 0rem 1rem 0rem;
    }

    footer>a img {
        margin: 1rem 1rem 0rem;
        padding-right: 2rem;
    }

    footer p:last-of-type {
        margin: 1rem 1rem 0rem 1rem;
    }

    p {
        text-align: left;
    }

    h1 {
        font-size: 1.7em;
    }

    h3 {
        font-size: 1.5em;
        margin: 0;
    }

    br {
        display: none;
    }

    footer br {
        display: block;
    }

    li {
        padding-left: 1.4rem;
    }
}

/* Ende Responsive */