@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font-family: "Teko", sans-serif;
    font-size: 1.250em;
    line-height: 1.3em;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 600px;
    border: solid 1px #000;
    background: #253F8E url('bg.jpg') no-repeat top;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.188em;
    line-height: 1.1em;
}
a {
    color: #fff;
    text-decoration: none;
}
hr {
    border: none;
    max-width: 40%;
    border-bottom: 2px solid #fff;
    margin-block: 0.5rem;
}
article {
    padding: 4rem 2rem 3rem;
}
article p:first-of-type {
    text-align: center;
    color: #000;
    transform: rotate(4deg);
    font-size: 0.688em;
    line-height: 1.1;
    position: absolute;
    top: 19rem;
    right: 12.5rem;
}
article figure {
    margin-left: -0.7rem;
}
article p:last-of-type {
    font-size: 1.250em;
}
/* Ende Article */
/* Footer */
footer {
    position: absolute;
    right: 1.5rem;
    bottom: 0;
}
.text {
    margin-bottom: -0.5rem;
}
footer p {
    font-size: 1.5em;
    transform: rotate(-3deg);
    padding-left: 1.5rem;
}
footer figure {
    display: flex;
    flex-wrap: wrap;
    margin: 0.3rem 0 0 2rem;
}
.qrcode {
    padding: 0.7rem 0 0 0.3rem;
}
/* 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:599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        background-image: none;
    }
    article p:first-of-type {
        position: static;
        display: flex;
        background: #FFF101;
        padding: 1rem;
        border-radius: 50%;
        width: 130px;
        height: 130px;
        margin-bottom: 1rem;
    }
    article {
        padding: 1.5rem;
    }
    h1 br{
    	display: none;
    }
    footer {
        position: static;
        padding: 0 1.5rem 1rem;
    }
}
/* Ende Responsive */