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

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

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

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Jost', sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}

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

p {
    padding-bottom: 1rem;
}

h1 {
    margin: -5rem 0rem 2rem;
    font-size: 1.992em;
    line-height: 1.1em;
    padding: 2rem 2rem 1rem;
    margin-left: -2rem;
    background: #000;
    color: #FFF;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
    text-transform: uppercase;
}

h1 span {
    font-size: 0.6em;
}

h2 {
    font-size: 1em;
    line-height: 1.3em;
    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: 0rem 0rem 1rem 0rem;
    list-style-image: url();
    list-style: none;
}

li {
    padding-left: 1.1rem;
}

ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.5em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -1.1rem;
}

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

/* Ende Standard */
/* Header */
header {
    padding: 2rem 2rem 4rem;
    position: relative;
}

header a {
    position: absolute;
    width: 48%;
    right: 6%;
    top: 10%;
    height: 51%;
}

/* Ende Header */
/* Article */
article {
    padding: 2rem 2rem 1rem;
    background: #FFF101;
}

/* Ende Article */
/* Footer */
footer {
    padding: 1.5rem 2rem 0.5rem;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

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

    header, article, footer {
        padding: 1rem;
    }

    footer {
        display: block;
    }

    p {
        text-align: left;
    }

    h1 {
        margin: 0rem 0rem 1rem -2rem;
        font-size: 1.35em;
        line-height: 1.2em;
    }
}

/* Ende Responsive */