@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 480px;
    margin: 1rem auto 5rem;
    border: 6px solid #93C11A;
    background: #fff;
    padding: 2rem 1.5rem 0.5rem;
    border-radius: 4px;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.color {
    color: #50AD2E;
}
p {
    padding-bottom: 1rem;
}
.center {
    text-align: center;
}
h1, h2 {
    color: #001F5F;
}
h1 {
    margin: 0 0 1rem 1.8rem;
    font-size: 1.8em;
    line-height: 1.3;
    text-indent: -1.8rem;
}
h1 span {
    font-size: 1rem;
    font-weight: 400;
}
h2 {
    font-size: 3em;
    line-height: 1;
    padding-bottom: 1rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.bg {
    margin: 0 0 1rem -1.5rem;
    padding: 0.75rem 0.5rem 0.25rem 1.5rem;
    background: #93C11A;
}
a.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #93C11A;
    color: #fff;
    font-weight: 700;
}
header .bg {
    margin-right: 2rem;
}
article p {
    font-size: 1.313em;
    line-height: 1.5;
}
footer figure {
    margin: 0;
    position: absolute;
    right: 1.5rem;
    bottom: -38px;
}
@media only screen and (max-width:479px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        overflow: hidden;
    }
    p a, span {
        display: inline-block;
    }
    h1 {
        margin-left: 0;
        text-indent: 0;
    }
    header .bg {
        margin-right: 0;
    }
    article br {
        display: none;
    }
    footer figure {
        position: static;
        display: flex;
        justify-content: center;
    }
}