@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;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 536px;
    border: solid 2px #000;
    background: #fff;
    padding: 1.5rem 0.7rem 0;
}
p {
    padding-bottom: 0.8rem;
}
h1:before {
    content: "•";
    padding-right: 0.5rem;
}
h1 {
    margin: 0 0 2rem 1rem;
    font-size: 1.188em;
    line-height: 1.1em;
    color: #048BCA;
    text-align: center;
}
h2 {
    font-size: 1.6em;
    line-height: 1.2;
    padding-bottom: 1.2rem;
}
header {
    position: absolute;
    right: 0.5rem;
    top: 3px;
}
article p:first-of-type {
    padding: 0.3rem 0 2rem;
}
footer {
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
}
hr {
    border: none;
    background: #000;
    height: 1px;
    width: 100%;
    text-align: center;
    margin: 0.5rem auto;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:535px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    header, footer {
        position: static;
        display: flex;
        justify-content: center;
    }
    br {
        display: none;
    }
}