:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #63676d;
    font-family: Arial, sans-serif;
    font-size: .875rem;
    line-height: 1.25;
}

img {
    max-width: 100%;
}

#wrapper {
    position: relative;
    max-width: 850px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #63676d;
    text-decoration: none;
    white-space: nowrap;
}

h1 {
    color: #f32938;
    font-size: 1.562rem;
    text-align: center;
    margin: 1.5rem 0;
    line-height: 1.2
}

h1 span {
    font-weight: normal;
    font-size: 18px;
    display: block;
}

h2 {
    font-size: 1.062rem;
}

p {
    margin: 0 0 1rem;
}

.big {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.center {
    text-align: center;
}

ul {
    list-style: none;
    margin: 0 0 1.25rem;
}

ul li {
    padding-left: 1.375rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1em;
    line-height: 1;
}

header {
    border-top: solid .625rem #f32938;
    padding: 0 2rem 2rem
}

header img {
    margin: .937rem 0 0
}

article {
    padding: 0 2rem 1rem
}

footer {
    border-bottom: solid .625rem #f32938;
    background: #1b222a;
    padding: 1rem;
}

footer p {
    text-align: center;
    color: #fff;
    margin: 0
}

@media only screen and (max-width: 848px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    .banner {
        width: 100%;
    }

    :is(p, ul) {
        hyphens: auto;
    }

    p span {
        white-space: nowrap;
    }

    :is(header, article) {
        padding: 0 1rem 1rem;
    }
}

@media only screen and (max-width: 540px) {
    h1 {
        font-size: 1.437rem;
        margin: 1rem 0
    }
}