@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #63696B;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 .937rem #a1a1a1;
}

header {
    padding: 2rem;
    display: flex;
}

article {
    padding: 1rem 2rem;
}

:is(article, footer) p:not(:last-of-type) {
    margin: 0 0 1rem;
}

span {
    white-space: nowrap;
}

article h1 {
    font-size: 24px;
    text-align: center;
    font-weight: normal;
    line-height: 120%;
    margin: 1rem 0;
}

article h1 span {
    font-size: 1.1rem;
    font-weight: 700;
}

article h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

article ul {
    margin: 0 0 1rem 1.4rem;
    list-style: none;
}

article ul li:before {
    content: "\25A0";
    float: left;
    font-size: 12px;
    margin: -2px 0 0 -22px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

footer {
    background: #000;
    padding: 1rem 2rem;
}

footer :is(p, a) {
    color: #fff;
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    article :is(p, ul) {
        hyphens: auto;
    }
}

@media only screen and (max-width: 480px) {
    header {
        justify-content: center;
    }

    :is(article, footer) {
        padding: 1rem;
    }

    footer {
        text-align: center;
    }
}
