@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #2C325C;
    font-family: Arial, sans-serif;
    font-size: 1.25em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 720px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0.5rem;
}
p {
    padding-bottom: 0.7rem;
}
h1 {
    margin: -0.7rem 0 0;
    font-size: 1.313em;
    line-height: 1.3;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
h2 span {
    font-weight: 400;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.125rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1.125rem;
}
header {
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.font {
    font-size: 0.95em;
    line-height: 1.3em;
}
footer {
    position: absolute;
    right: 2rem;
    bottom: 1rem;
}
@media only screen and (max-width:719px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    br {
        display: none;
    }
    .font br {
        display: initial;
    }
    header, footer {
        position: static;
        display: flex;
        justify-content: center;
    }
    article {
        padding-top: 1rem;
    }
}
@media only screen and (max-width:480px) {
    body {
        font-size: 1em;
    }
}