@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    background: url('../images/bg1.jpg') top left no-repeat, url('../images/bg2.jpg') bottom left no-repeat;
    overflow: hidden;
    padding: 1rem 1.5rem 3rem;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p :is(span, a) {
    display: inline-block;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.5em;
    line-height: 1.3;
}
h1 span {
    font-weight: normal;
}
h2 {
    font-size: 1.1875em;
    line-height: 1.3em;
    text-transform: uppercase;
    color: #C8102E;
}
.inline {
    display: inline;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    margin-right: -1.5rem;
    padding-left: 4.5rem;
    hyphens: auto;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -2rem;
}
header {
    padding-bottom: 1rem;
}
h1, .center {
    text-align: center;
}
hr {
    border: dotted #FF0000;
    border-width: 4px 0 0;
    margin: -0.5rem 0 1.25rem;
}
.big {
    font-size: 1.125em;
    line-height: 1.3;
}
footer p {
    color: #C8102E;
    font-size: 2em;
    line-height: 1.3;
    margin: 5rem 1rem 0;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
        padding: 1rem;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    li {
        padding-left: 2rem;
        margin: 0;
    }
    header {
        display: flex;
        justify-content: center;
    }
    footer p {
        padding: 1rem 2rem 0;
        margin: 0 -1rem;
        border-top: 0.25rem solid #849D80;
    }
}
@media only screen and (max-width:480px) {
    li {
        padding-left: 1rem;
    }
    li:before {
        margin-left: -1rem;
    }
    footer p {
        font-size: 1.75em;
    }
}