@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid 2px #231F20;
    background-color: #fff;
    overflow: hidden;
    padding: 2px;
}
p.big {
    font-size: 1.2em;
    line-height: 1.3em;
}
p {
    padding-bottom: 0.5rem;
}
p a.color {
    color: #0462C1;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 3em;
    line-height: 1.1em;
}
h1 span{
    font-size: 0.6em;
}
h1, .center {
    text-align: center;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.red {
    color: #EE1D23;
}
img {
    max-width: 100%;
    height: auto;
}
main {
    padding: 0.5rem;
    border: 2px solid #231F20;
}
.left {
    text-align: left;
}
.small {
    font-size: 0.84em;
    line-height: 1.3em;
    padding: 0.5rem 0 0.75rem;
}
.small_2 {
    font-size: 0.9em;
    line-height: 1.3em;
    padding: 0.5rem 0 0.75rem;
}
hr {
    margin: 0 auto 0.75rem;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #06AFEF;
}
.qr {
    position: absolute;
    right: 3rem;
    bottom: 3.5rem;
}
footer p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1rem;
    flex-wrap: wrap;
}
footer img {
    vertical-align: -2px;
}
@media only screen and (max-width: 699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
    }
    p {
        text-align: left;
    }
    p a {
        display: inline-block;
    }
    main {
        border: none;
    }
    .left br {
        display: none;
    }
    .qr {
        display: flex;
        justify-content: center;
        position: static;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }
}