@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 400 1.25em/1.3em 'Jost', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 603px;
    margin: 1rem auto;
    border: 2px solid #E9E8E8;
    background: #fff;
    overflow: hidden;
    padding: 0.8rem 1rem 0.5rem;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: underline;
}
:is(h1, h4) {
    color: #A5CF6B;
}
h1 {
    margin: 0.1rem 0;
    font-size: 1.5em;
    line-height: 1.1;
    text-transform: uppercase;
}
h1+p {
    text-align: center;
}
h2 {
    font-size: 0.938em;
    line-height: 1.3;
}
h3 {
    font-size: 1.5em;
    line-height: 1.3;
}
h4 {
    font-size: 1.063em;
    line-height: 1.3;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.6rem;
    position: absolute;
    left: 0;
    top: 0;
    font-family: Arial, sans-serif;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 0 0 0.5rem;
    display: flex;
    justify-content: center;
}
article p {
    padding-bottom: 0.5rem;
}
footer {
    padding: 0.5rem;
    margin: 0 -0.5rem;
    background: #E9E8E8;
}
footer :is(p, h4), h1, h3 {
    text-align: center;
}
footer p {
    font-size: 0.975em;
    line-height: 1.3;
}
@media only screen and (max-width:602px) {
    body {
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
}