@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 520px;
    margin: 1rem auto;
    border: solid 2px #2F407A;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1, .color {
    color: #2F407A;
}
h1, h2 {
    font-family: "Arial Black", Arial, sans-serif;
}
h1 {
    margin: 0.75rem 0;
    font-size: 1.5em;
    line-height: 1.1em;
}
h1+p{
    padding-bottom: 1.5rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
article {
    padding: 0.5rem 1.5rem 0;
    text-align: center;
}
footer {
    padding: 1rem 1.5rem;
    background: #2F407A;
    color: #fff;
}
footer p{
    font-size: 0.813em;
    line-height: 1.3;
    padding: 0;
}
figure{
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
@media only screen and (max-width:519px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    span {
        display: inline-block;
    }
    article br{
        display: none;
    }
}
@media only screen and (max-width:480px) {
    article, footer {
        padding-inline: 1rem;
    }
}