@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.125em/1.25 Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 520px;
    margin: 1rem auto;
    border: 2px solid #3C5EAB;
    background: #fff;
    overflow: hidden;
    padding: 0.5rem 1rem 0;
}
a {
    color: #000;
    text-decoration: none;
}
p {
    padding-bottom: 0.85rem;
}
h1 {
    margin: -0.25rem 0 0.1rem;
    font-size: 1.525em;
    line-height: 1.1;
    color: #3C5EAB;
}
h1, strong {
    font-weight: 700;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    padding: 0 0 0.5rem;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row-reverse;
}
footer p {
    text-align: justify;
    width: 80%;
}
footer :is(span, a) {
    color: #3C5EAB;
}
footer figure {
    margin: 0 0 0.5rem;
    display: flex;
    justify-content: center;
}
@media only screen and (max-width:519px) {
    body {
        font-size: 1em;
        line-height: 1.25;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.8rem;
    }
    footer {
        display: block;
    }
    footer p {
        width: 100%;
        text-align: left;
    }
}