@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.042em 'Open Sans', sans-serif;
    line-height: 1.5;
}
#wrapper {
    position: relative;
    max-width: 615px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff url('bg.jpg') no-repeat;
    overflow: hidden;
    padding: 2rem 2rem 0.5rem 6rem;
    text-align: left;
}
span {
    font-weight: 600;
}
a {
    color: #000;
    text-decoration: none;
    font-size: 1.125em;
}
p {
    padding-bottom: 1rem;
}
h1, h2 {
    margin: 0.5rem 0 1rem 1.8rem;
    font-size: 1.15em;
    line-height: 1.4;
}
h1:before, h2:before {
    content: "\25A0";
    display: block;
    font-size: 1.15em;
    line-height: 1;
    position: relative;
    float: left;
    top: 0px;
    margin-left: -1.8rem;
    color: #D21638;
}
i {
    font-style: normal;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}
/* Header */
header {
    padding: 0 0 1.25rem;
    text-align: right;
}
/* Ende Header */
/* Article */
article {
    padding: 0;
}
article>p:last-of-type strong {
    display: inline-block;
    margin-top: 0.25rem;
}
/* Ende Article */
/* Footer */
footer {
    padding: 0;
    position: absolute;
    right: 1rem;
    bottom: 0.5rem;
}
footer img {
    width: 165px;
}
@media only screen and (max-width:614px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        background: #fff;
        font-size: 0.9375em;
    }
    p {
        text-align: left;
    }
    br {
        display: none;
    }
    header {
        padding-bottom: 1rem;
    }
    footer {
        position: static;
    }
    a {
        font-size: 1.25em;
    }
}