@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #242021;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 490px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #E8E9EA;
    overflow: hidden;
    padding: 2rem 1rem;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.25em;
    line-height: 1.1em;
    color: #8CC647;
}
h1 + p {
    padding-bottom: 0.625rem;
}
h2 {
    font-size: 1.3125em;
    line-height: 1.3em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
a.big {
    color: #8CC647;
    font-size: 1.8125em;
    font-weight: bold;
}
figure {
    display: flex;
    gap: 0.5rem;
}
footer {
    position: absolute;
    bottom: 1.5rem;
    right: 1rem;
}
@media only screen and (max-width:489px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        position: relative;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h2 {
        letter-spacing: 0;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}