@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.03em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 512px;
    margin: 1rem auto;
    border: solid 3px #A6BD2F;
    background-color: #fff;
    overflow: hidden;
    padding: 0.5rem 0.5rem 0;
}
.big {
    font-size: 1.125em;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.8em;
    line-height: 1.1;
    text-align: center;
    color: #A5BC2E;
}
h1 span {
    font-size: 0.7em;
    line-height: 1.3em;
    display: block;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding-left: 0.8rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: -2px 0 0 -0.8rem;
}
header {
    display: flex;
    justify-content: space-between;
    gap: 0 0.5rem;
    margin-bottom: 0.25rem;
}
article {
    position: relative;
}
article p:last-of-type {
    padding-bottom: 0.5rem;
    line-height: 1.3;
}
article figure {
    position: absolute;
    bottom: 0;
    right: -1rem;
}
footer {
    padding: 0.5rem 1rem 0;
    background: #A6BD2F;
    margin: 0 -1rem;
}
footer p {
    color: #FFF;
    font-weight: 900;
    text-align: center;
    font-size: 2em;
    line-height: 1;
    padding-bottom: 0.5rem;
    letter-spacing: 1px;
}
@media only screen and (max-width:511px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p :is(span, a) {
        display: inline-block;
    }
    header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    article figure {
        position: static;
        display: flex;
        justify-content: center;
    }
    footer p {
        font-size: 1.5em;
    }
    li br {
        display: none;
    }
}