@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #73A2C1;
    font: 1.125em/1.3em Verdana, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 695px;
    margin: 1rem auto;
    border: solid 2px #73A2C1;
    background-color: #fff;
    overflow: hidden;
}
#wrapper::before {
    content: "";
    width: 119px;
    height: 310px;
    background: url('../images/bg.png') no-repeat center;
    position: absolute;
    top: -2px;
    right: -1px;
    pointer-events: none;
}
h1 {
    font-size: 1.1em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
h2 {
    font-size: 0.9em;
    line-height: 1.3em;
    width: 138px;
    height: 138px;
    text-align: center;
    border-radius: 50%;
    background-color: #F1BD5A;
    color: #fff;
    transform: rotate(-8deg);
    padding: 2.625rem 1rem;
    position: absolute;
    left: 2.75rem;
    bottom: 4rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
article {
    padding: 1.25rem 2.5rem 0;
    position: relative;
}
article p, h1 {
    text-align: center;
}
article p {
    line-height: 1.7em;
    padding-bottom: 2rem;
}
.upper {
    padding-bottom: 0;
}
.pb {
    padding-bottom: 3rem;
}
.upper, h2, h1 {
    text-transform: uppercase;
}
figure img {
    display: block;
}
figure {
    margin: 0.75rem -2.5rem 0;
}
footer {
    padding: 0.75rem 2.5rem;
    background-color: #73A2C1;
}
footer p {
    color: #fff;
}
.qr {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.625rem;
}
footer p {
    font-size: 0.938em;
    line-height: 1.3em;
}
@media only screen and (max-width: 694px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    #wrapper::before, article p br {
        display: none;
    }
    article {
        padding: 1rem 2rem 0;
    }
    figure {
        margin: 0.75rem -2rem 0;
    }
    h2 {
        position: static;
        margin: 1rem auto;
    }
    p.pb{
        padding-bottom: 1rem;
    }
    footer {
        padding: 1rem 2rem;
    }
    footer>p {
        text-align: center;
    }
    p span {
        display: inline-block;
    }
    .flex {
        flex-direction: column;
        gap: 1rem;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1em;
    }
    article {
        padding: 1rem 1rem 0;
    }
    figure {
        margin: 0.75rem -1rem 0;
    }
    footer {
        padding: 1rem;
    }
    .qr {
        justify-content: center;
    }
}