@charset "utf-8";
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/fira-sans-v16-latin-regular.eot'); 
  src: local(''),
       url('../fonts/fira-sans-v16-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/fira-sans-v16-latin-regular.woff2') format('woff2'), 
       url('../fonts/fira-sans-v16-latin-regular.woff') format('woff'), 
       url('../fonts/fira-sans-v16-latin-regular.ttf') format('truetype'), 
       url('../fonts/fira-sans-v16-latin-regular.svg#FiraSans') format('svg'); 
}
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/fira-sans-v16-latin-700.eot'); 
  src: local(''),
       url('../fonts/fira-sans-v16-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/fira-sans-v16-latin-700.woff2') format('woff2'), 
       url('../fonts/fira-sans-v16-latin-700.woff') format('woff'), 
       url('../fonts/fira-sans-v16-latin-700.ttf') format('truetype'), 
       url('../fonts/fira-sans-v16-latin-700.svg#FiraSans') format('svg'); 
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 400 1.12em/1.3em 'Fira Sans', Arial, sans-serif;
    color: #231F20;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 607px;
    border: solid 2px #231F20;
    background: #fff;
    padding: 1rem 1rem 0.5rem;
}
h1,h2{
    color: #B52B25;
}
p {
    padding-bottom: 0.5rem;
}
strong, h1, h2 {
    font-weight: 700;
}
ul  {
    padding: 0 0 1rem 0;
}
ul {
    list-style: none;
}
li {
    padding: 0 0 0 16px;
}
ul li:before {
    content: "•";
    font-size: 1.3em    ;
    float: left;
    margin: -1px 0 0 -16px;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.2em;
    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;
    align-items: flex-end;
    flex-wrap: wrap;
}
footer figure{
    margin-bottom: 0.5rem;
}
.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) {
    body{
        font-size: 1em;
        line-height: 1.3em;
    }
    #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;
    }
}