@charset "utf-8";
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/fira-sans-v17-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Fira Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/fira-sans-v17-latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 400 1em/1.3em 'Fira Sans', Arial, sans-serif;
    color: #231F20;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 607px;
    border: solid 1px #231F20;
    background: #fff;
    padding: 1rem 1rem 0.5rem;
}
h1,h2{
    color: #B52B25;
}
p {
    padding-bottom: 0.5rem;
}
strong, h1, h2 {
    font-weight: 700;
}
ul, ol {
    padding: 0 0 1rem 0;
}
ul {
    list-style: none;
}
li {
    padding: 0 0 0 16px;
}
ol {
    margin-left: 1rem;
}
ol li::marker {
    margin: -1px 0 0 -16px;
    font-weight: bold;
}
ol li {
    padding: 0 0 0 0.5rem;
}
ul li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -16px;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.4em;
    line-height: 1.1em;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
h3 {
    font-size: 1.313em;
    line-height: 1.3;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
}
footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.qrcode {
    display: flex;
    padding-top: 1.5rem;
}
.qrcode p {
    padding: 2.5rem 0 0 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:589px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1 {
        font-size: 2em;
    }
}
@media only screen and (max-width:500px) {
    footer {
        flex-direction: column;
        align-items: center;
    }
    footer p{
        text-align: center;
    }
}