@charset "utf-8";
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/montserrat-v25-latin-500.eot');
    src: local(''),
        url('../fonts/montserrat-v25-latin-500.eot?#iefix') format('embedded-opentype'),
        url('../fonts/montserrat-v25-latin-500.woff2') format('woff2'),
        url('../fonts/montserrat-v25-latin-500.woff') format('woff'),
        url('../fonts/montserrat-v25-latin-500.ttf') format('truetype'),
        url('../fonts/montserrat-v25-latin-500.svg#Montserrat') format('svg');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/montserrat-v25-latin-800.eot');
    src: local(''),
        url('../fonts/montserrat-v25-latin-800.eot?#iefix') format('embedded-opentype'),
        url('../fonts/montserrat-v25-latin-800.woff2') format('woff2'),
        url('../fonts/montserrat-v25-latin-800.woff') format('woff'),
        url('../fonts/montserrat-v25-latin-800.ttf') format('truetype'),
        url('../fonts/montserrat-v25-latin-800.svg#Montserrat') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    text-align: center;
    color: #FFF;
    font: 1em/1.3em 'Montserrat', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 650px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #000001;
    overflow: hidden;
    padding: 0 0 2rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 -1rem 3.5rem;
    font-size: 1.9em;
    line-height: 1.3;
    background: #EE2523;
    padding: 1rem 2rem;
    text-align: left;
}
h1 span {
    position: relative;
    z-index: 1;
    margin-left: 14rem;
    display: inline-block;
}
h2 {
    padding: 0.5rem 1rem;
    font-size: 1.4em;
    line-height: 1.3;
    margin: 0 -1rem 1rem 1rem;
    background: url('../images/bg.jpg') repeat-y;
}
.color1 {
    color: #EE2523;
}
.color2 {
    color: #72BF42;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    display: flex;
    justify-content: start;
    padding: 1rem;
}
article {
    margin: 0 -2rem 0;
    padding: 0 1rem;
    transform: rotate(-7deg);
}
article figure {
    position: absolute;
    bottom: 0rem;
    right: 5.6rem;
}
.qr {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
@media only screen and (max-width: 649px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    article {
        transform: rotate(0);
        padding: 0 1rem 1rem;
        margin: 0;
    }
    h1, h2 {
        text-align: center;
        margin: 0.5rem 0;
        padding: 0.5rem 1rem;
    }
    h1 span {
        margin: 0;
    }
    h2 {
        background: #000;
    }
    article figure {
        display: none;
    }
    .qr, header {
        position: static;
        display: flex;
        justify-content: center;
    }
    br {
        display: none;
    }
}