@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 0.983em/1.3em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 651px;
    border: solid 2px #385E93;
    background: #fff;
    padding: 1rem 1rem 0.5rem;
}
p {
    padding-bottom: 0.5rem;
    hyphens: auto;
    text-align: justify;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.692em;
    line-height: 1.1em;
    text-align: center;
    color: #385E93;
}
h1 span {
    display: block;
    font-size: 0.7em;
    line-height: 1.3;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    color: #385E93;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #231F20;
    text-decoration: none;
}
p :is(a, span) {
    display: inline-block;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0.1rem 1rem;
}
ul li:before {
    content: "\2022";
    font-size: 1.3em;
    font-family: Arial, Helvetica, sans-serif;
    float: left;
    margin-left: -1rem;
}
header {
    position: relative;
    padding-bottom: 0.7rem;
}
header figure {
    position: absolute;
    right: 0;
    top: 0;
}
article p:last-of-type {
    text-align: left;
}

footer {
 display: flex;
  justify-content: end;
  margin: -54px 0 0;
}
@media only screen and (max-width:650px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    h1 {
        font-size: 1.5em;
    }
    h1 br{
        display: none;
    }
  
    footer {
        justify-content: center;
        margin: 0;
    }
}
@media only screen and (max-width:420px) {
    header figure {
        position: static;
        display: flex;
        justify-content: center;
    }
}