@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: lighter 1.5em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 623px;
    margin: 1rem auto;
    background-image: linear-gradient(#fff 0%, #fff 20%, #FFDC01 100%);
    overflow: hidden;
}
#wrapper::before{
    content: "";
    width: 613px;
    height: 100%;
    border: solid 5px #FFDD01;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: -0.375rem 0 2rem;
    font-size: 1.65em;
    line-height: 1.1em;
}
h1 span {
    font-size: 1.5rem;
    line-height: 1.3;
    display: block;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
}
h1, h2, strong {
    font-weight: 700;
}
h1, h2 {
    text-transform: uppercase;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.underline {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 1rem 2.25rem;
}
ul li:before {
    content: "";
    width: 26px;
    height: 26px;
    background: url('../images/icon1.png') no-repeat center;
    float: left;
    margin: 2px 0 0 -2.25rem;
}
.list2 li::before {
    width: 29px;
    height: 23px;
    background: url('../images/icon.png') no-repeat center;
}
header, footer {
    position: relative;
    z-index: 2;
}
article {
    padding: 0 2.625rem 0 4.125rem;
    margin: -1rem 0 -5rem;
    position: relative;
    z-index: 3;
}
.qr h2 {
    margin: -0.25rem 0 0;
    line-height: 1;
}
.qr {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
@media only screen and (max-width: 622px) {
    body {
        font-size: 1.25em;
    }
    #wrapper {
        margin: 0 auto;
    }
    #wrapper::before, br {
        display: none;
    }
    article {
        padding: 1rem 2rem;
        margin: 0;
    }
    p span {
        display: inline-block;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1.125em;
    }
    h1 {
        font-size: 1.5em;
    }
    article {
        padding: 1rem;
    }
    .qr {
        flex-direction: column;
        align-items: center;
    }
    .qr :is(h2, p) {
        text-align: center;
    }
}