@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.125em/1.3 Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 624px;
    margin: 1rem auto;
    border: solid 2px #30449A;
    background-color: #fff;
    overflow: hidden;
    padding: 1.5rem 1.5rem 0.25rem;
}
p {
    padding-bottom: 0.875rem;
}
h1 {
    margin: 0 -1.5rem 0.75rem;
    padding: 0.625rem 1.5rem;
    background-color: #30449A;
    color: #fff;
    font-size: 2em;
    line-height: 1.1em;
    text-align: center;
}
h1 span {
    font-size: 1.125rem;
    display: inline-block;
}
h1 span:nth-of-type(2) {
    line-height: 1.3;
    display: block;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 0.75rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -0.75rem;
}
header {
    padding: 0 0 1.25rem;
}
footer h2 {
    margin-bottom: 0.5rem;
}
h2, footer strong {
    color: #30449A;
}
@media only screen and (max-width: 623px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p span {
        display: inline-block;
    }
    header {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1em;
    }
    #wrapper {
        padding: 1rem;
    }
}