@charset "utf-8";
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v50-latin-500.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v50-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v50-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v50-latin-500.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v50-latin-500.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v50-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/roboto-v50-latin-900.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v50-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v50-latin-900.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v50-latin-900.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v50-latin-900.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v50-latin-900.svg#Roboto') format('svg'); /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 500 1.25em/1.3 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 645px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #363B3E url('../images/bg.jpg') no-repeat bottom 120px right 150px;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 1.5rem 0;
    font-size: 1.692em;
    line-height: 1.1em;
}
h1 span {
    font-size: 0.7em;
    display: inline-block;
}
h2 {
    font-size: 1.75em;
    line-height: 1.3em;
    width: fit-content;
    padding: 0.75rem 2.25rem;
    background-color: #E2293D;
    text-align: center;
    margin-left: -2.25rem;
}
h1, h2, strong {
    font-weight: 900;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
main {
    padding: 0.5rem 2.25rem 1.5rem;
}
.qr p {
    text-align: center;
    padding: 0 0 0.375rem;
    font-size: 1.15em;
    line-height: 1.4;
}
.qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 21.5rem;
    right: 2rem;
    padding-right: 1.25rem;
    background: url('../images/icon.png') no-repeat top 55px right;
}
article > p {
    font-size: 1.25em;
    line-height: 1.3;
}
footer {
    margin: 1.25rem 0 0 -0.5rem;
}
footer section {
    display: flex;
    align-items: center;
    gap: 1.125rem;
}
footer p {
    padding: 0;
}
.social {
    position: absolute;
    right: 1.375rem;
    bottom: 1.375rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
}
.social i {
    font-size: 1.5em;
    line-height: 1.3;
}
@media only screen and (max-width: 644px) {
    body {
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        background-position: right 15px bottom 15px;
    }
    p {
        text-align: left;
    }
    .qr {
        position: static;
        width: fit-content;
        margin: 0 auto;
    }
    h1 + p br {
        display: none;
    }
    h2 {
        margin: 0 auto 1rem;
    }
    footer section {
        flex-direction: column;
    }
    footer p {
        text-align: center;
    }
    .social {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 1rem;
    }
}
@media only screen and (max-width: 480px) {
    main {
        padding: 1rem;
    }
    h2 {
        padding: 0.75rem;
        font-size: 1.4em;
        line-height: 1.2;
    }
    h1 {
        font-size: 1.5em;
    }
}