@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 1.125rem;
    line-height: 1.4;
    color: #000;
    background: #fff;
    font-weight: normal;
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

#wrapper {
    position: relative;
    max-width: 50rem;
    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:hover {
    outline: none;
    text-decoration: none;
}

p {
    text-align: justify;
    margin: 0 0 1.25rem;
}

.mowrap {
    white-space: nowrap;
}

h1 {
    color: #FFFFFF;
    font-size: 2.062rem;
    font-weight: bold;
    padding: 0 0 0.625rem;
    margin: 0.75rem 0 0.312rem;
    line-height: 2.375rem;
}

h2 {
    color: #1E1E38;
    font-size: 1.125rem;
    text-transform: uppercase;
    padding: 0.625rem 0 0;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 1.125rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.125rem;
    font-size: 1.75rem;
    line-height: 0.9;
}

article {
    padding: 1.25rem
}

aside {
    background-color: #1E1E38;
    padding: 1.25rem;
    color: #fff
}

article .center {
    text-align: center;
    margin: 3.125rem auto 1.25rem;
}

a.button {
    padding: 0.5rem 1.875rem;
    background-color: rgb(198, 17, 22);
    border-radius: 0.375rem;
    color: #fff;
    text-align: center;
    font-size: 0.937rem;
    font-weight: bold;
}

footer {
    padding: 0 1.25rem 0.625rem;
    font-size: 0.687rem;
    font-style: italic
}

footer p {
    margin-bottom: 0
}

footer ol {
    padding: 0 2.5rem 0.625rem
}

@media only screen and (max-width:49.937rem) {
    #wrapper {
        margin: 0 auto;
        border: 0;
        padding: 0.625rem;
    }

    p {
        text-align: left
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }

    footer ol {
        padding: 0 0.625rem 0.625rem;
    }
}

@media only screen and (max-width:48rem) {

    article,
    footer {
        padding: 1rem;
    }

    h1 {
        font-size: 1.562rem;
        padding: 0.625rem 0;
        line-height: 1.2
    }
}

@media only screen and (max-width:30rem) {
    body {
        font-size: 1rem
    }

    ul li:before {
        font-size: 1rem;
        line-height: 1.2;
    }

    h1 {
        font-size: 1.25rem;
        margin: 0;
        padding: 0
    }

    article .center {
        margin: 1.875rem 0 0.625rem
    }

    footer ol {
        padding: 0 0.625rem 0.625rem
    }
}

@media only screen and (max-width:23.437rem) {
    body {
        font-size: 0.875rem;
    }

    h2 {
        font-size: 1rem;
    }
}