@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: 0.875em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 730px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 5rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0;
    font-size: 1em;
    line-height: 1.2;
    text-align: center;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: normal;
    text-decoration: underline;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
a ins {
    color: #0462C1;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem 0;
    list-style: none;
}
li {
    padding-left: 3rem;
}
li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: -3px;
    margin-left: -1.5rem;
}
header {
    position: relative;
}
header p {
    text-align: center;
}
header section {
    position: absolute;
    top: 0;
    left: 0;
}
header aside {
    margin: 0 0 2.5rem 17rem;
}
header aside p {
    padding-bottom: 0;
}
footer {
    padding: 0.5rem 0 0;
    text-align: center;
}
footer p span{
    display: block;
}
@media only screen and (max-width:729px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    header section {
        position: static;
        display: flex;
        justify-content: center;
    }
    header aside {
        margin: 1rem 0;
    }
    br {
        display: none;
    }
    p a{
        display: inline-block;
    }
    li {
        padding-left: 1.5rem;
    }
}