@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Rubik Dirt';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/rubik-dirt-v2-latin-regular.eot');
    src: url('../fonts/rubik-dirt-v2-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/rubik-dirt-v2-latin-regular.woff2') format('woff2'),
        url('../fonts/rubik-dirt-v2-latin-regular.woff') format('woff'),
        url('../fonts/rubik-dirt-v2-latin-regular.ttf') format('truetype'),
        url('../fonts/rubik-dirt-v2-latin-regular.svg#RubikDirt') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.125em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #D7EFF5;
    overflow: hidden;
    padding: 0 0.8rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1, h2 {
    color: #fff;
}
h1 {
    margin: 0;
    font: 400 1.4em/1.1em 'Rubik Dirt', Arial, sans-serif;
}
h2 {
    font-size: 1.35em;
    line-height: 1.3;
    font-weight: 400;
    width: fit-content;
}
h1+h2 {
    border-top: 1px solid #fff;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 0.8rem 0.8rem 1.5rem;
    margin: 0 -0.8rem 1rem;
    background: #fff;
    display: flex;
    justify-content: flex-end;
}
.top {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 1rem;
}
.top p {
    color: #008DCC;
    text-align: right;
    padding-bottom: 0.5rem;
}
.logo {
    position: absolute;
    right: 1.5rem;
    top: 9rem;
    z-index: 2;
}
article {
    padding: 0.5rem 1rem;
    background: #fff;
    border-radius: 20px;
}
.title {
    background: #74BF43;
    padding: 0.35rem 2rem 0.5rem 2.25rem;
    margin: -1.75rem 0 1.25rem -2.5rem;
    transform: rotate(-4deg);
    width: fit-content;
}
.qr {
    display: flex;
    justify-content: flex-start;
    gap: 1rem 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -0.5rem;
}
.qr p {
    padding: 0 1.25rem 0 0;
    color: #009CD7;
}
footer p {
    text-align: center;
    font-size: 0.875em;
    line-height: 1.3;
    margin-top: 0.75rem;
}
@media only screen and (max-width:499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    h1 br {
        display: none;
    }
    .logo {
        position: static;
    }
    header {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .qr {
        flex-direction: column;
        align-items: center;
    }
    .qr p {
        text-align: center;
        padding-right: 0;
    }
}
@media only screen and (max-width:380px) {
    .top {
        flex-direction: column;
        align-items: center;
    }
    .top p {
        order: 2;
        text-align: center;
    }
}