@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: #fff;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 565px;
    border: solid 1px #000;
    background: #000 url('../images/bg.jpg') no-repeat top;
    height: 624px;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.892em;
    line-height: 1.1em;
}
h1 small {
    font-size: 0.7em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
figure {
    position: absolute;
    bottom: 7rem;
    left: -2rem;
    transform: rotate(-90deg);
}
article {
    padding: 0 0 0 16rem;
}
article p {
    font-size: 1.25em;
    line-height: 1.3;
}
.qrcode {
    margin: 12px 0 0 -2.3rem;
}
footer p {
    font-family: Arial Black, sans-serif;
    font-size: 1.5em;
    transform: rotate(-90deg);
    position: absolute;
    right: 19%;
    bottom: 5.25rem;
    line-height: 1.1;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:564px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
        height: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    figure {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        background: #C3450A;
        padding: 0.5rem 1rem;
    }
    p {
        text-align: center;
    }
    article {
        padding: 1rem;
    }
    br {
        display: none;
    }
    .qrcode {
        margin: 1rem 0;
        display: flex;
        justify-content: center;
    }
    footer p {
        position: static;
        transform: none;
        padding: 0 1rem 1rem;
    }
}