@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #77737C;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
h1 {
    margin: 0;
    font-size: 3.25em;
    line-height: 0.8;
    background-color: #FF0000;
    padding: 0.75rem 1rem 0.75rem 4.5rem;
    width: 465px;
    text-align: center;
    color: #fff;
    position: absolute;
    bottom: 2.25rem;
    left: 0;
}
h1 :is(span, small) {
    font-weight: 400;
}
h1 small {
    font-size: 1rem;
}
h1 span {
    font-size: 0.5em;
    line-height: 1.2em;
    display: block;
    margin-right: 3.5rem;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3em;
    margin-bottom: 0.25rem;
    color: #FF0000;
    text-transform: uppercase;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
    width: 530px;
}
li {
    padding-left: 1.1rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -1.1rem;
}
header {
    position: relative;
}
article {
    padding: 1rem 2.625rem;
    border-top: 18px solid #23378B;
}
article h2 {
    font-size: 1.438em;
    padding-right: 2rem;
    width: fit-content;
    min-width: 170px;
}
.flex {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
footer {
    padding: 0.75rem 1rem 1rem;
    background-color: #23378B;
}
footer :is(h2, p) {
    color: #fff;
    text-align: center;
}
footer p {
    font-size: 0.85em;
    line-height: 1.35;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    h1 {
        position: static;
        margin: 1rem 2rem;
        padding: 0.75rem 1rem;
        width: auto;
    }
    h1 span {
        margin-right: 0;
    }
    p span {
        display: inline-block;
    }
}
@media only screen and (max-width: 780px) {
    .flex {
        display: block;
    }
    ul {
        width: auto;
    }
    article {
        padding: 1rem 2rem;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        margin: 1rem;
        font-size: 2.5em;
        line-height: 1em;
    }
    article {
        padding: 1rem;
    }
}