@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 715px;
    border: solid 1px #30328F;
    background: #fff;
    padding: 1rem 1rem 0.5rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
h1, h2 {
    margin: 0rem 0rem 0rem;
    font-size: 1.375em;
    line-height: 1.1em;
    text-align: center;
}
.center {
    text-align: center;
}
h3 {
    font-size: 1.375em;
    line-height: 1.3;
    font-weight: 400;
    text-decoration: underline;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style-image: url();
    list-style: none;
}
li {
    padding: 0 0 0 70px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
}
header {
    padding: 0 0 2rem;
    display: flex;
    justify-content: end;
}
section {
    padding-left: 2rem;
}
footer p {
    text-align: center;
   margin: 1rem 0;
}
a.mail {
    background: #1F4497;
    color: #FADF35;
    padding: 0.7rem 3rem;
    text-transform: uppercase;
    border: 3px solid #FADF35;
    font-weight: 700;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:714px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    p {
        text-align: left;
    }
    section {
        padding: 0;
    }
    li{
        padding-left: 20px;
    }
    h2 br{
        display: none;
    }
}
/* Ende Responsive */