@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 560px;
    margin: 1rem auto;
    border: 6px solid #0E58A7;
    background: #fff;
    overflow: hidden;
    border-radius: 16px;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: -7rem 3.5rem 1rem -2rem;
    padding: 1rem 1rem 1rem 2rem;
    font-size: 2.9em;
    line-height: 1;
    background: #0E58A7;
    color: #fff;
    border-radius: 0 16px 16px 0;
    position: relative;
    transform: rotate(-2deg);
}
h1 span {
    display: block;
    font-size: 0.7em;
    line-height: 1.3;
}
h1 .hl {
    background: #65C102;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.3;
    border-radius: 10px;
    position: absolute;
    right: -1.5rem;
    top: -1.25rem;
    transform: rotate(3deg);
}
h1 small {
    display: block;
    font-size: 1.55rem;
    line-height: 1.3;
    margin-top: 0.35rem;
    font-weight: 400;
}
h2 {
    font-size: 1.063em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
ul {
    padding: 0 0 1rem 0.4rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\25A0";
    font-size: 0.7rem;
    position: absolute;
    left: 0;
    top: 1px;
    color: #65C102;
}
ul:first-of-type li:first-of-type {
    margin-bottom: 0.35rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.qr {
    position: absolute;
    right: 1rem;
    bottom: 9rem;
}
article, footer {
    padding: 0 1.25rem;
}
article>p:first-of-type{
    letter-spacing: -0.25px;
}
footer section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 0 2rem;
}
@media only screen and (max-width:559px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1 {
        font-size: 2.2em;
    }
    .qr {
        position: static;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}
@media only screen and (max-width:480px) {
    article, footer {
        padding: 0 1rem;
    }
    h1 {
        font-size: 1.8em;
        margin: -1rem 0 1rem -2rem;
        padding: 1rem 1rem 1rem 2rem;
    }
    h1 small {
        font-size: 1.25rem;
    }
    ul {
        padding-left: 0;
    }
}