@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v27-latin-700.eot');
    src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Lobster Two';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/lobster-two-v20-latin-700italic.eot');
    src: url('../fonts/lobster-two-v20-latin-700italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/lobster-two-v20-latin-700italic.woff2') format('woff2'),
        url('../fonts/lobster-two-v20-latin-700italic.woff') format('woff'),
        url('../fonts/lobster-two-v20-latin-700italic.ttf') format('truetype'),
        url('../fonts/lobster-two-v20-latin-700italic.svg#LobsterTwo') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #006CB7;
    font: 400 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
    text-align: center;
}
h1 {
    font-weight: 700;
}
#wrapper {
    position: relative;
    max-width: 480px;
    margin: 2rem auto 1rem;
    border: 4px solid #006CB7;
    background: #fff;
    padding: 0.75rem 1.5rem 0;
}
:is(h1, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    font-size: 1.25em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h1 span {
    font-weight: 400;
}
h1 small {
    font-size: 1rem;
    font-weight: 400;
}
h2 {
    margin: 0 0 1rem;
    font: italic 700 2.345em/1em 'Lobster Two', Arial, sans-serif;
    color: #D1232A;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: -2.25rem;
}
header figure {
    margin: 0 -1.5rem 1rem;
}
article p:first-of-type {
    text-align: justify;
    text-align-last: center;
    margin-inline: 1rem;
    font-size: 1.125em;
    line-height: 1.3;
}
.qr {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
footer {
    padding: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    border-radius: 0.75rem;
    background: #006CB7;
    gap: 0.75rem;
}
footer p {
    padding: 0;
    color: #fff;
    text-align: right;
}
@media only screen and (max-width:479px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p a, span {
        display: inline-block;
    }
    h1 {
        font-size: 2em;
    }
    header {
        margin: 0;
    }
    header figure {
        margin: 0 -1rem 1rem;
    }
    footer {
        flex-direction: column;
    }
    footer p {
        text-align: center;
    }
}