@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000000;
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 54.375rem;
    margin: 1rem auto;
    border: solid 0.0625rem #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
}

p {
    padding-bottom: 1rem;
}

:is(a:link, a:visited, a:active) {
    color: #000000;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    margin: 0 0 1rem;
    font-size: 1.8em;
    line-height: 1.3em;
    font-weight: 700;
    text-align: center;
    color: #C00000;
}

h1 span,
h2,
p span {
    color: #C00000;
    font-weight: 700;
}

h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}

ul {
    padding: 0 0 1rem 1.5rem;
    list-style: none;
}

li {
    padding-left: 1.25rem;
}

li:before {
    content: "•";
    float: left;
    margin: -0.0625rem 0 0 -1.25rem;
}

header {
    padding: 0 4rem 3rem;
    background: #D9D9D9;
}

header img {
    float: right;
}

article {
    margin-top: 9rem;
    padding: 0 4rem;
}

article>img {
    display: block;
    border: 0.125rem solid #BEBEBE;
    margin-bottom: 1rem;
}

footer {
    padding: 0 4rem 1rem 6rem;
}

@media only screen and (max-width:54.25rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width:46rem) {
    header {
        padding: 0 1rem 2rem;
    }

    header a {
        position: relative;
        float: left;
        left: 50%;
        transform: translateX(-50%);
    }

    article,
    footer {
        padding: 0 1rem;
    }

}

@media only screen and (max-width:30rem) {
    h1 {
        font-size: 1.6rem;
    }

    ul {
        padding-left: 0;
    }
}