@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 0.813em;
    line-height: 1.3em;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 650px;
    box-shadow: 0 0 5px #000000;
    border: #000 solid 1px;
    position: relative;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0.5rem 0rem 1.5rem;
    font-size: 2.5em;
    line-height: 1.1em;
    font-weight: 500;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
a {
    color: #000;
    text-decoration: none;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style-image: url();
    list-style: none;
}
li {
    padding: 0 0 0 13px;
}
ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -13px;
}
/* Main */
/* Ende Main */
/* Header */
header {
    padding: 0rem 0rem 0rem;
}
figure {
    display: flex;
    justify-content: end;
    padding: 5%;
}
#imagetext {
    padding: 2rem 25px 1.5rem;
    margin: 0 -25px 1rem -71px;
    background: #EE7202;
    color: #fff;
}
/* Ende Header */
/* Article */
article {
    padding: 0 25px 3rem 71px;
}
/* Ende Article */
/* Footer */
footer {
    padding: 0rem 0rem 0rem;
    position: absolute;
    right: 3rem;
    bottom: 1rem;
}
/* Ende Footer */
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
/* Hebt Float left/right auf */
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}
/* Ende Standard */
/* Responsive */
@media only screen and (max-width:649px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    p {
        text-align: left;
    }
    article {
        padding: 0.3rem 1rem;
    }
    #imagetext {
        padding: 1rem;
        margin: 0 -1rem 1rem;
    }
    h1{
        font-size: 2em;
    }
}
@media only screen and (max-width:525px) {
    footer {
        position: static;
        display: flex;
        justify-content: center;
        padding: 1rem;
    }
}
/* Ende Responsive */