@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Calibri, sans-serif;
    font-size: 1.125em;
    line-height: 1.3em;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 655px;
    border: solid 2px #808080;
    background: #fff;
}
p {
    padding-bottom: 0.7rem;
    text-align: justify;
}
h1 {
    margin: -0.5rem 0rem 0.7rem;
    font-size: 1.692em;
    line-height: 1.1em;
}
h1 small {
    font-size: 0.6em;
    font-weight: 400;
}
h2 {
    font-size: 1em;
    line-height: 1.2;
}
a {
    color: #000;
    text-decoration: none;
}
ul {
    padding: 0rem 0rem 0.7rem 0rem;
    list-style-image: url();
    list-style: none;
}
li {
    padding: 0 0 0 20px;
}
ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.2em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -20px;
}
/* Main */
/* Ende Main */
/* Header */
header {
    padding: 0rem 0rem 0rem;
}
.logo {
    position: absolute;
    right: 1rem;
    top: 23rem;
}
/* Ende Header */
/* Article */
article {
    padding: 0.7rem 1rem 0rem;
}
.mail {
    text-align: center;
    background: #A72B30;
    padding: 0.5rem 1rem;
    margin: 0 -1rem 0.5rem;
    color: #fff;
}
/* Ende Article */
/* Footer */
footer p {
    font-size: 0.938em;
    line-height: 1.3;
    padding: 0rem 1rem 2rem;
}
/* Ende Footer */
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;
}
/* Ende Standard */
/* Responsive */
@media only screen and (max-width:654px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    p {
        text-align: left;
    }
    .logo {
        position: static;
        display: flex;
        justify-content: center;
        padding: 0.5rem 0;
    }
    br {
        display: none;
    }
}
/* Ende Responsive */