@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}
#wrapper {
    position: relative;
    max-width: 760px;
    margin: 1rem auto;
    border: solid 1px #C6C6C6;
    background-color: #fff;
    overflow: hidden;
    padding: 2.5rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 1.292em;
    line-height: 1.3em;
    text-align: center;
}
h1 span {
    display: block;
    color: #549FC9;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0.7rem;
    color: #549FC9;
}
a {
    color: #000;
    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.3rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.2em;
    position: relative;
    float: left;
    margin-top: -1px;
    margin-left: -1.3rem;
}
header {
    display: flex;
    justify-content: center;
    padding-bottom: 2.5rem;
}
article p:first-of-type {
    text-align: justify;
}
article p:nth-of-type(2) {
    text-align: center;
}
article section {
    padding-left: 5rem;
}
footer p{
    padding-top: 0.5rem;
    text-align: center;
}
footer a {
    color: #549FC9;
}
@media only screen and (max-width:759px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    header {
        padding-bottom: 1rem;
    }
    article p:first-of-type {
        text-align: left;
    }
    footer span, footer a {
        display: inline-block;
    }
}