@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #475263 url('../images/bg.jpg') top left no-repeat;
    overflow: hidden;
    padding: 1.5rem 1.5rem 0;
}
p {
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1 {
    margin: 0 0 1.5rem 2rem;
    font-size: 1.375em;
    line-height: 1.1em;
}
h2 {
    color: #FAD35C;
    font-size: 1.425em;
    line-height: 1.3em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
h3 {
    font-size: 3em;
    line-height: 1;
    margin-bottom: 1rem;
    color: #475263;
    text-transform: uppercase;
    transform: rotate(-5deg);
    letter-spacing: 1px;
    margin: 0 0 8rem;
}
h1:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1.25rem;
    font-size: 1rem;
}
.qrc {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.qrc p img {
    margin-bottom: -0.5rem;
}
footer {
    display: flex;
    justify-content: flex-end;
    margin: -0.5rem 0 1.3125rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
        padding: 1rem 1rem 0;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h3 {
        padding: 1rem;
        background: #FAD35C;
        padding: 0.5rem 1rem;
        transform: none;
        margin: 0 0 1rem;
        text-align: center;
    }
    header br {
        display: none;
    }
    footer {
        padding: 1rem;
        background: #fff;
        justify-content: center;
        margin: 1rem -1rem 0;
    }
}
@media only screen and (max-width:480px) {
    body {
        font-size: 1em;
        line-height: 1.3;
    }
}