@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: 529px;
    margin: 1rem auto;
    border: solid 2px #1E8DCD;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0.25rem;
}
p {
    padding-bottom: 0.5rem;
    text-align: justify;
}
p span{
    display: inline-block;
}
h1 {
    margin: 0 0 0.75rem;
    font-size: 1.6em;
    line-height: 1.3em;
    text-align: center;
}
h1 span{
    display: block;
    font-size: 0.95rem;
    line-height: 1.3;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    text-align: justify;
}
:is(h1, h2) {
    color: #1E8DCD;
}
: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.8rem;
}
ul li:before {
    content: "\2022";
    float: left;
    margin: 1px 0 0 -0.8rem;
}
header {
    position: absolute;
    top: 5.1rem;
    right: 1rem;
}
article>h2:last-of-type{
    margin-bottom: 0.5rem;
}
article p:first-of-type {
    width: 66%;
    padding-bottom: 0.75rem;
    font-size: 0.75em;
    line-height: 1.3;
}
@media only screen and (max-width: 528px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    header {
        position: static;
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
    }
    article br{
        display: none;
    }
    article p:first-of-type {
        width: auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    p, h2{
        text-align: left;
        hyphens: auto;
    }
}