@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #242021;
    font: 1em/1.3 Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 550px;
    margin: 1rem auto;
    border: solid 2px #2B80C0;
    background: url('../images/bg.jpg') no-repeat top 11.3% right;
    overflow: hidden;
    padding: 1rem 1.25rem 0;
}
p {
    padding-bottom: 0.5rem;
}
h1, h2 {
    color: #2B80C0;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.7em;
    line-height: 1;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
}
h2+p {
    padding-bottom: 0;
}
h1 span {
    font-size: 0.75em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1.25rem;
    list-style: none;
}
li {
    padding-left: 1.3rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1.3rem;
}
header {
    padding: 0.5rem 0 3.5rem;
    position: relative;
}
header figure {
    position: absolute;
    top: 0;
    right: 0;
}
header h2 {
    font-size: 1.4em;
    line-height: 1.3em;
}
footer {
    padding: 0.5rem 0.5rem 0;
    margin: 0.5rem -1.25rem 0;
    background: #D3E6F4;
    position: relative;
}
.right p {
    text-align: right;
}
.flex {
    display: flex;
    justify-content: space-between;
}
footer figure {
    position: absolute;
    bottom: 0.25rem;
    left: 14.7rem;
}
footer p {
    font-size: 0.95em;
    line-height: 1.3;
}
@media only screen and (max-width: 549px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        background: #FFF;
    }
    :is(h2, li) br {
        display: none;
    }
    header {
        padding: 0 0 1rem;
    }
    header h2, h1, h1+p, footer p {
        text-align: center !important;
    }
    figure {
        display: flex !important;
        justify-content: center !important;
        position: static !important;
    }
    .flex {
        flex-direction: column;
    }
    footer {
        padding: 0.5rem 1rem;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }
    h2 {
        font-size: 1.2em;
    }
}