@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
h1 {
    margin: 0;
    font-size: 1em;
    line-height: 1.3em;
    font-weight: 400;
}
h2 {
    font-size: 2.75em;
    line-height: 1.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.qr {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    align-items: center;
    padding: 0.5rem 2rem;
    border-radius: 40px;
    background: #DDE46F;
    width: fit-content;
}
.qr p {
    font-size: 0.9em;
    line-height: 1.2;
}
article {
    padding: 2rem;
}
footer {
    padding: 0 2rem 2rem;
}
.flex {
    display: flex;
    gap: 4rem;
    align-items: center;
}
.circle {
    font-size: 0.88em;
    line-height: 1.3;
    text-align: center;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    background: #DDE46F;
    text-transform: uppercase;
    padding: 2.5rem 0.5rem 0;
    position: absolute;
    top: 381px;
    right: 91px;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .circle {
        position: static;
        margin: 0 auto 2rem;
    }
    footer {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 768px) {
    .flex {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    h2 {
        font-size: 2em;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    .qr {
        margin: 2rem auto 1rem;
    }
    p {
        text-align: center;
    }
    br {
        display: none;
    }
}
@media only screen and (max-width: 430px) {
    article, footer {
        padding: 1rem;
    }
}