@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #0066B3;
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 605px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
h1 {
    font-size: 1.75em;
    line-height: 1.3;
    margin: 1rem;
}
h3 {
    font-size: 1.625em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3;
}

h2 + p {
    font-size: 1.125em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    padding: 0.5rem 1rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
header :is(h2, p) {
    text-align: center;
    color: #fff;
}
.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 1rem;
}
.left {
    position: relative;
}
.qr {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    margin-bottom: -1rem;
}
strong {
    font-weight: 600;
}
.orange {
    color: #F26E33;
}
.big {
    font-size: 1.063em;
    margin: -45px 0 0;
    line-height: 1.4;
}
footer {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 1rem 0.5rem;
}
footer p {
    padding: 0;
}
@media only screen and (max-width: 604px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .flex {
        padding: 1rem;
        flex-direction: column;
        align-items: center;
    }
    br {
        display: none;
    }
    .big {
        margin: 0;
    }
    p {
        padding-bottom: 0.5rem;
    }
    p a{
        display: inline-block;
    }
    header {
        position: static;
        padding: 1rem;
    }
    header :is(h2, p) {
        color: inherit;
    }
    .qr {
        align-items: center;
        margin: 0;
    }
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}