@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 520px;
    border: solid 1px #000;
    background: #fff;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0rem 0rem 0.5rem;
    font-size: 1.65em;
    line-height: 1.1em;
    color: #445160;
}
h1 small {
    font-size: 0.7em;
    display: block;
}
h2 {
    font-size: 1.6em;
    line-height: 1.2;
    padding-top: 0.7rem;
}
h2 small {
    display: block;
    font-size: 0.75em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
h1, h2, p {
    text-align: center;
}
.qrcode {
    display: flex;
    justify-content: center;
    margin: -0.5rem 0 0.3rem;
}
.box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
article {
    padding: 0.2rem 1rem 0.5rem;
}
article p:last-child {
    padding-bottom: 0;
}
footer {
    padding: 48px 113px 0.3rem;
    display: flex;
    justify-content: space-between;
    background: url('../images/bg.jpg') no-repeat bottom;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:519px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    br {
        display: none;
    }
    p :is(span, a) {
        display: inline-block;
    }
    footer {
        padding: 1rem;
        background: #D7DFE7;
    }
    h1 {
        font-size: 1.375em;
    }
}
@media only screen and (max-width:445px) {
    .box {
        display: block;
    }
    figure {
        display: flex;
        justify-content: center;
        margin: 1rem 0;
    }
}