@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #313131;
    font: 1em/1.5em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 1.25rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.link {
    color: #0000FF;
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
:is(h1, h4) {
    text-transform: uppercase;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.1em;
    line-height: 1.5;
}
h1 span {
    font-size: 1.125rem;
    text-transform: none;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h3 {
    font-size: 1.45em;
    line-height: 1.2;
    font-weight: normal;
    margin-bottom: 0.5rem;
}
h4 {
    font-size: 2.1em;
    line-height: 1.5;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}
.flex .box {
    width: 48%;
}
.title {
    position: absolute;
    left: 2.5rem;
    top: 13rem;
}
.title :is(h1, h3) {
    color: #fff;
}
header {
    margin-right: -1.25rem;
}
article {
    padding: 1rem 1.25rem 0;
    margin: 1.25rem 0;
    background: #D9D2BD;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
footer section {
    order: 3;
}
footer section p {
    text-align: right;
}
.social {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
}
.social a {
    font-size: 2em;
}
figure {
    margin: 0 0 1rem;
    order: 2;
}
i {
    color: #000;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
}
@media only screen and (max-width:780px) {
    :is(h1, h4) {
        font-size: 1.7em;
    }
    .title {
        position: static;
    }
    .title :is(h1, h3) {
        color: #000;
    }
    .flex {
        display: block;
    }
    .flex .box {
        width: 100%;
    }
    br:not(.block br) {
        display: none;
    }
    footer {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    footer section {
        order: 2;
    }
    footer p {
        text-align: center !important;
    }
    .social {
        justify-content: center;
        margin: 1rem 0;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 0.75rem;
    }
    :is(h1, h4) {
        font-size: 1.5em;
    }
    li {
        padding-left: 1rem;
    }
    header {
        margin-right: -0.75rem;
    }
    article {
        padding: 0.75rem 0.75rem 0;
        margin: 0.75rem 0;
    }
}