@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.4em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #215E99;
    background: #fff;
    overflow: hidden;
    padding: 4rem 6rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.link{
    color: #467886;
    text-decoration: underline;
}
p {
    padding-bottom: 0.625rem;
}
.center, h1{
    text-align: center;
}
h1 {
    margin: 0 0 0.625rem;
    font-size: 1.3em;
    line-height: 1.2;
    color: #215E99;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.625rem;
}
ul {
    padding: 0 0 0 0.625rem;
    list-style: none;
}
li {
    padding: 0 0 0.625rem 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #215E99;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
hr {
    border: none;
    background: #000;
    height: 1px;
    margin: 0.5rem 0;
}
footer, header{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}
.flex{
    margin: 2rem 0;
}
footer {
    margin-top: 1rem;
}
figure {
    margin: 0;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 3rem;
    }
    :is(p, li) {
         -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:768px) {
    #wrapper {
        padding: 2rem;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    ul{
        padding-left: 0;
    }
}