@charset "utf-8";
@font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v22-latin-regular.eot'); /* IE9 Compat Modes */
    src: url('../fonts/poppins-v22-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/poppins-v22-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('../fonts/poppins-v22-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
         url('../fonts/poppins-v22-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
         url('../fonts/poppins-v22-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
  }
  @font-face {
    font-display: swap; 
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v22-latin-600.eot'); /* IE9 Compat Modes */
    src: url('../fonts/poppins-v22-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/poppins-v22-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('../fonts/poppins-v22-latin-600.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
         url('../fonts/poppins-v22-latin-600.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
         url('../fonts/poppins-v22-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */
  }
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em 'Poppins', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 605px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #000 url('../images/bg.jpg') no-repeat top center;
    overflow: hidden;
}
strong {
    font-weight: 600;
}
.color {
    color: #32BA8D;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
h2 {
    transform: rotate(-3deg);
    margin: -0.5rem 0 2rem;
    font-size: 1.7em;
    line-height: 1.3;
}
article {
    padding: 0 2.125rem;
}
.qr {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 1rem 0 2rem;
}
footer p {
    padding: 0 2.125rem 1.75rem;
    font-size: 0.75em;
    line-height: 1.3em;
    display: flex;
    justify-content: space-between;
    text-align: center;
}
@media only screen and (max-width: 604px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #1D3233;
    }
    h2 {
        text-align: center;
        transform: none;
        margin-bottom: 1rem;
    }
    .qr {
        flex-direction: column;
        gap: 1rem;
    }
    .qr p {
        text-align: center;
    }
    .qr p br {
        display: none;
    }
    article, footer p {
        padding: 0 2rem;
    }
    article {
        padding-top: 0.75rem !important;
    }
    footer p {
        padding-bottom: 1rem !important;
        font-size: 0.75em;
        line-height: 1.5em;
        display: block;
    }
    p span {
        display: inline-block;
    }
}
@media only screen and (max-width: 480px) {
    article, footer p {
        padding: 0 1rem;
    }
}