@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 300 1em/1.3em 'Open Sans', Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 725px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #8FAC85;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p.small {
    font-size: 0.8em;
    line-height: 1.3em;
}
p.big {
    font-size: 1.1em;
    line-height: 1.3em;
}
p, ul {
    text-align: justify;
    hyphens: auto;
}
h1, h2, strong {
    font-weight: 700;
    text-transform: uppercase;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 -2rem 1rem;
    font-size: 1.692em;
    line-height: 1.1;
    color: #FFF;
    text-align: center;
    background: #8FAC85;
    padding: 1rem 2rem;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
p strong, h2 {
    color: #8FAC85;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin-left: -1.5rem;
}
article {
    padding: 0 2rem 2rem;
}
footer {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
.flex {
    display: flex;
    justify-content: start;
    gap: 0 1rem;
    align-items: center;
    margin: 1rem 0;
}
.flex p {
    padding-bottom: 0;
}
@media only screen and (max-width:724px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    a,span{
        display: inline-block;
    }
    p, ul {
        text-align: left;
    }
    .flex p{
        width: 80%;
    }
}
@media only screen and (max-width: 575px) {
    article>p:last-of-type {
        text-align: center;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 480px) {
    article{
        padding: 0 1rem 1rem;
    }
}