@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #1D437B;
    font: 400 1em/1.3em "Segoe UI", Arial, sans-serif;
}
h1, h3, footer p {
    font-weight: 600;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 0.75rem #CFDF6C;
    background: #fff;
    overflow: hidden;
}
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: 1.75em;
    line-height: 1.3;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
}
h3 {
    font-size: 1.75em;
    line-height: 1.3em;
    font-style: italic;
    border-bottom: solid 0.125rem #CFDF6C;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "\2022";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    padding: 1rem;
}
article {
    padding: 0 1rem;
}
footer {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5rem;
    background: #CFDF6C;
    padding: 1rem 1rem 0.5rem;
}
figure {
    position: absolute;
    bottom: 5rem;
    right: 1rem;
}
footer p {
    text-align: center;
    font-size: 1.375em;
    line-height: 1.3;
    padding: 0;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    figure {
        position: static;
        display: flex;
        justify-content: center;
    }
    footer {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }
}
@media only screen and (max-width:480px) {
    h1, h3 {
        font-size: 1.625em;
    }
}