@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #231F20;
    background-color: #FBC821;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: -1rem 0 -3rem;
    font-size: 1em;
    line-height: 1.3;
    font-weight: normal;
    position: relative;
    z-index: 999;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3;
}
h2+p {
    font-size: 1.25em;
    line-height: 1.3;
    margin-right: 4.25rem;
}
h3 {
    font-size: 1.9em;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
h3 span {
    color: #231F20;
}
h3, h4 {
    color: #D9193E;
}
h4 {
    font-size: 1.3em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #D9193E;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
header {
    display: flex;
    justify-content: space-between;
    gap: 0 1rem;
    margin-bottom: 1rem;
}
.center {
    margin-left: -5rem;
}
.center :is(h2, h3, p) {
    text-align: center;
}
article {
    padding-left: 5rem;
}
footer {
    display: flex;
    justify-content: flex-end;
}
footer>figure{
    margin-right: -1rem;
}
.qr {
    position: absolute;
    top: 8rem;
    right: 2.5rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    article {
        padding: 0;
    }
    h1 {
        margin: -1rem 0 1rem;
    }
    footer {
        justify-content: center;
    }
    p :is(a, span) {
        display: inline-block;
    }
}
@media only screen and (max-width:768px) {
    .qr {
        position: static;
    }
    .center {
        margin: 0;
    }
    h2+p {
        margin-right: 0;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem 1rem 0;
    }
}