@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em Calibri, Arial, sans-serif;
    color: #000;
    text-align: center;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 515px;
    border: solid 3px #0066FF;
    background: #fff;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.652em;
    line-height: 1.2em;
    color: #0066FF;
}
h2 {
    font-size: 1.0625em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
article {
    padding: 0.2rem 1.5rem 0.75rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.title {
    width: 279px;
}
img {
    max-width: 100%;
    height: auto;
}
.qr p {
    font-size: 1.0625em;
    line-height: 1.3;
}
.qr  img {
    margin: -0.35rem 0 1rem;
}
footer p {
    padding: 0 1rem 0.3rem;
}
@media only screen and (max-width:514px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    article {
        padding: 0.2rem 1rem 0.75rem;
        flex-direction: column;
    }
    .title {
        width: 100%;
    }
    .qr {
        padding-top: 1rem;
    }
    .qr img {
        margin: 0;
    }
    br {
        display: none;
    }
    .qr p {
        padding-top: 1rem;
    }
}