@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 Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 555px;
    margin: 1rem auto;
    border: 3px solid #165582;
    background: #fff;
    overflow: hidden;
    padding: 1rem 1.5rem 0;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.063em;
    line-height: 1.1;
    color: #165582;
}
h1 span {
    font-size: 0.8em;
    font-weight: 400;
    display: block;
    margin-top: 0.25rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.color {
    color: #165582;
}
header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: -6.125rem;
}
footer {
    padding: 0.75rem 2rem 0.25rem;
    margin: 0.5rem -2rem 0;
    background: #165582;
    color: #fff;
    line-height: 1.5;
}
@media only screen and (max-width:554px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem 1rem 0;
    }
    p {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    header{
        justify-content: center;
        margin-bottom: 1rem;
    }
    article br{
        display: none;
    }
    h1{
        font-size: 1.7em;
    }
}