@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.4em;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 750px;
    border: solid 2px #000;
    background: #fff;
    padding: 4rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
h1,
h2,
.center,
footer p {
    text-align: center;
}
h1 {
    margin: 0rem 0rem 1rem;
    font-size: 1.692em;
    line-height: 1.3em;
}
h2 {
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
a {
    color: #467886;
    text-decoration: none;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style-image: url();
    list-style: none;
}
header {
    padding: 0rem 3rem 5rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
main {
    background: url('bg.jpg') no-repeat center center;
    padding: 1rem;
    margin: 0 -1rem;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    p {
        text-align: left;
    }
    br {
        display: none;
    }
    header {
       padding: 0 0 1rem;
    }
}
/* Ende Responsive */