@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #0563C1;
    text-decoration: underline;
}

p {
    text-align: justify;
    margin: 0 0 1.25rem;
}

em strong {
    white-space: nowrap;
}

.nowrap {
    white-space: nowrap;
}

h1 {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0.625rem 0 1.25rem;
}

h2 {
    font-size: 1rem;
    margin: 0 0 0.3125rem;
}

ul {
    list-style: none;
    margin: 0 0 1.25rem 1.562rem;
    padding: 0;
}

ul li {
    text-align: justify;
    padding-left: 2.5rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -2rem;
    font-size: 1.375em;
    line-height: 1;
}

article {
    padding: 1.562rem 1.875rem;
}

footer {
    padding: 0 1.875rem 3.75rem;
}

@media only screen and (max-width: 56.1875rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
        text-align: left;
    }

    ul li {
        text-align: left;
        padding-left: 1.25rem;
    }

    ul li:before {
        margin-left: -1.25rem;
    }

    article,
    footer {
        padding: 1rem 0.625rem 0;
    }
}

@media only screen and (max-width: 27rem) {

    article,
    footer {
        padding: 1rem 0 0;
    }

    h1,
    footer p {
        text-align: center;
    }
}