@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v36-latin-regular.eot'); /* IE9 Compat Modes */
    src: url('../fonts/noto-sans-v36-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/noto-sans-v36-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('../fonts/noto-sans-v36-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
         url('../fonts/noto-sans-v36-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
         url('../fonts/noto-sans-v36-latin-regular.svg#NotoSans') format('svg'); /* Legacy iOS */
  }
@font-face {
    font-display: swap; 
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/noto-sans-v36-latin-600.eot'); /* IE9 Compat Modes */
    src: url('../fonts/noto-sans-v36-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/noto-sans-v36-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('../fonts/noto-sans-v36-latin-600.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
         url('../fonts/noto-sans-v36-latin-600.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
         url('../fonts/noto-sans-v36-latin-600.svg#NotoSans') format('svg'); /* Legacy iOS */
  }
@font-face {
    font-display: swap; 
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v36-latin-700.eot'); /* IE9 Compat Modes */
    src: url('../fonts/noto-sans-v36-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/noto-sans-v36-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('../fonts/noto-sans-v36-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
         url('../fonts/noto-sans-v36-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
         url('../fonts/noto-sans-v36-latin-700.svg#NotoSans') format('svg'); /* Legacy iOS */
  }
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 700 1.25em/1.3em 'Noto Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 635px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
h1 {
    margin: 0;
    font-size: 1.125em;
    line-height: 1.3em;
    width: max-content;
    position: absolute;
    bottom: 9.5rem;
    left: 50%;
    transform: rotate(-3deg) translateX(-50%);
}
h1 span {
    display: inline-block;
    padding: 0.125rem 0.5rem;
}
h1 span:first-of-type {
    font-weight: 600;
    background: #fff;
    color: #000;
}
h1 span:nth-of-type(2) {
    font-weight: 700;
    background-color: #001400;
}
h1 span:nth-of-type(3) {
    background-color: #001400;
    font-weight: 400;
    position: absolute;
    right: 0;
    top: 36px;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.qr {
    display: flex;
    align-items: center;
}
.qr p {
    padding: 1.25rem 2rem 1rem 1rem;
    background-color: #AA0F2B;
    box-shadow: 2px 4px 7px rgba(0, 0, 0, 0.8);
}
footer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: flex-start;
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
}
@media only screen and (max-width: 634px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    h1 {
        position: static;
        width: auto;
        transform: none;
        padding: 1rem;
        text-align: center;
    }
    h1 span:nth-of-type(3) {
        position: static;
        margin-top: 0.25rem;
    }
    footer {
        position: static;
        padding: 0 1rem 1rem;
        flex-direction: column;
        align-items: center;
    }
    .logo img {
        border-radius: 0 30px 0 0;
    }
    footer img {
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    }
}
@media only screen and (max-width: 510px) {
    .qr {
        flex-direction: column;
        gap: 0.5rem;
    }
    .qr p {
        padding: 1rem;
        text-align: center;
    }
}