@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.3;
}
#wrapper {
    position: relative;
    max-width: 835px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 3rem 5rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.25em;
    line-height: 1.1;
    text-align: center;
    color: #00AF4F;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 1rem 1rem 0;
    list-style: none;
}
li {
    padding-left: 3.2rem;
}
li:before {
    content: "\2010";
    display: inline-block;
    font-size: 1em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1.5rem;
}
header {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid #000;
    margin-bottom: 1rem;
}
header p {
    width: 82%;
    line-height: 1.25em;
}
article {
    padding: 0;
}
footer {
    padding: 0;
}
@media only screen and (max-width: 833px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        font-size: 0.938em;
        line-height: 1.3em;
    }
    p {
        text-align: left;
    }
    li {
        padding-left: 1.5rem;
    }
    header {
        flex-direction: column;
        align-items: center;
    }
    header p {
        width: auto;
    }
    ul {
        padding-right: 0;
    }
}