@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 665px;
    margin: 1rem auto;
    border: 4px solid #204D9E;
    border-bottom: none;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    text-align: justify;
}
h1 {
    margin: 0 -1rem;
    padding: 0.5rem 1rem;
    font-size: 1.8em;
    line-height: 1.1;
    background: #204D9E;
    color: #fff;
}
h1 span {
    font-size: 1.25rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.35rem;
}
h3 {
    font-size: 1.4em;
    line-height: 1.2;
    margin: 0 -1rem 1.25rem;
    padding: 0.5rem 1rem;
    background: #BEBEBE;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 0.5rem 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
    align-items: center;
}
header p {
    width: 51%;
}
article {
    padding: 0 0.8rem;
}
article p {
    padding-bottom: 1rem;
}
footer {
    padding: 0.5rem 0.8rem;
    background: #204D9E;
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
}
footer p {
    color: #fff;
}
@media only screen and (max-width:664px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        text-align: left;
        hyphens: auto;
    }
    p :is(a, span) {
        white-space: nowrap;
    }
    header, footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    header p {
        width: 100%;
    }
    footer p{
        text-align: center;
    }
}