@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: 520px;
    border: solid 2px #000;
    background: #F8F398;
    padding: 0.7rem 0.7rem 0;
}
p {
    padding-bottom: 1rem;
}
h1,
h2 {
    margin: 0rem 0rem 0.7rem;
    font-size: 1.5em;
    line-height: 1.1em;
}
a {
    color: #000;
    text-decoration: none;
}
header {
    position: absolute;
   top: 0;
    right: 0;
}
/* Ende Header */
/* Article */
article {
    padding: 0rem 0rem 0rem;
}
/* Ende Article */
/* Footer */
footer {
    padding: 0rem 0rem 0rem;
}
/* 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:519px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
   article br{
   	display: none;
   }
   header{
   	position: static;
   	display: flex;
   	justify-content: center;
   	padding-bottom: 0.7rem;
   }
}
/* Ende Responsive */