@charset "utf-8";
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/jost-v14-latin-regular.eot');
    src: local(''),
        url('../fonts/jost-v14-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/jost-v14-latin-regular.woff2') format('woff2'),
        url('../fonts/jost-v14-latin-regular.woff') format('woff'),
        url('../fonts/jost-v14-latin-regular.ttf') format('truetype'),
        url('../fonts/jost-v14-latin-regular.svg#Jost') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1.25em/1.3em 'Jost', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 590px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #2C2D2B;
    overflow: hidden;
}
h1 {
    margin: 2rem 0 3rem;
    font-size: 1.2em;
    line-height: 1.3em;
    font-weight: 400;
    text-transform: uppercase;
}
h1 span {
    text-transform: initial;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 1.5rem 0 4rem;
    list-style: none;
}
li {
    padding-left: 1.3rem;
}
ul li:before {
    content: "\2022";
    float: left;
    margin: -1px 0 0 -1.3rem;
    font-family: Calibri, sans-serif;
    font-size: 1.5em;
    color: #D01C3D;
}
main {
    padding: 0 2.5rem 1rem;
}
figure {
    display: flex;
    justify-content: center;
}
.qr {
    background: url('../images/bg.jpg') no-repeat top center;
    padding: 2.75rem 1.625rem 3rem;
    display: flex;
    justify-content: center;
    width: fit-content;
    transform: rotate(7deg);
    position: absolute;
    bottom: 3rem;
    right: 3rem;
}
hr {
    margin: 0 -2.5rem 1rem;
    border: none;
    border-bottom: 1px solid #484847;
}
@media only screen and (max-width: 589px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    main {
        padding: 0 2rem 1rem;
    }
    .qr {
        transform: none;
        margin: 0 auto 2rem;
        position: static;
    }
    ul {
        padding: 0 0 2rem;
    }
    footer p {
        text-align: center;
    }
    span {
        display: inline-block;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1.125em;
    }
    main {
        padding: 0 1rem 1rem;
    }
}