@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v24-latin-300.eot');
    src: url('../fonts/poppins-v24-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v24-latin-300.woff2') format('woff2'), url('../fonts/poppins-v24-latin-300.woff') format('woff'), url('../fonts/poppins-v24-latin-300.ttf') format('truetype'), url('../fonts/poppins-v24-latin-300.svg#Poppins') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v24-latin-600.eot');
    src: url('../fonts/poppins-v24-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v24-latin-600.woff2') format('woff2'), url('../fonts/poppins-v24-latin-600.woff') format('woff'), url('../fonts/poppins-v24-latin-600.ttf') format('truetype'), url('../fonts/poppins-v24-latin-600.svg#Poppins') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v24-latin-800.eot');
    src: url('../fonts/poppins-v24-latin-800.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v24-latin-800.woff2') format('woff2'), url('../fonts/poppins-v24-latin-800.woff') format('woff'), url('../fonts/poppins-v24-latin-800.ttf') format('truetype'), url('../fonts/poppins-v24-latin-800.svg#Poppins') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 800;
    src: url('../fonts/poppins-v24-latin-800italic.eot');
    src: url('../fonts/poppins-v24-latin-800italic.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v24-latin-800italic.woff2') format('woff2'), url('../fonts/poppins-v24-latin-800italic.woff') format('woff'), url('../fonts/poppins-v24-latin-800italic.ttf') format('truetype'), url('../fonts/poppins-v24-latin-800italic.svg#Poppins') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 300 1em/1.3em 'Poppins', Arial, sans-serif;
}
h1, h2, h3 {
    font-weight: 800;
}
strong, h4 {
    font-weight: 600;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #E7232A url('../images/bg.jpg') top left no-repeat;
    overflow: hidden;
    padding: 0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.25em;
    line-height: 1.3;
}
h2 {
    font-size: 1em;
    line-height: 1.2;
    position: absolute;
    top: 11rem;
    right: 2rem;
    transform: rotate(4deg);
    width: 130px;
    text-align: center;
    height: 130px;
    border-radius: 100%;
    background: #E7232A;
    padding: 1.875rem 0.75rem;
    text-transform: uppercase;
    box-shadow: 0.5rem 0.5rem 0.5rem #565454;
}
h3 {
    font-size: 2.625em;
    line-height: 1.3em;
    text-transform: uppercase;
    font-style: italic;
    margin: -2.125rem 0 0.375rem;
}
h4 {
    font-size: 1.375em;
    line-height: 1.3em;
    text-transform: uppercase;
    color: #ED1C24;
    margin-bottom: 2rem;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 1.75rem;
    font-size: 1.125em;
    line-height: 1.3;
}
li:before {
    content: "■";
    font-size: 1.25em;
    line-height: 1;
    float: left;
    margin: -4px 0 0 -1.75rem;
}
header {
    opacity: 0;
}
article {
    padding: 0 2rem;
}
.qrc {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}
.qrc p {
    font-size: 1.125em;
    line-height: 1.3;
}
footer {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
@media only screen and (max-width:499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h2 {
        position: static;
        margin: 0 auto 1rem;
    }
    h3 {
        margin: 0 0 1rem;
        text-align: center;
    }
    h4 {
        padding: 0.5rem 1rem;
        background: #fff;
        text-align: center;
    }
    header {
        opacity: 1;
    }
    article {
        padding: 0 1rem;
    }
    footer {
        padding: 1rem;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
}