@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
}
p {
    text-align: justify;
    hyphens: auto;
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    font-size: 1em;
    line-height: 1.3;
    color: #ED1C24;
}
h1 span {
    font-size: 2.4em;
    line-height: 1.3;
}
h1, h1 + p {
    text-align: center;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3em;
    margin-top: -0.5rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 0.625rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -0.625rem;
}
header{
    padding: 0.5rem 1.5rem;
}
article {
    padding: 0 1.5rem;
}
footer p {
    padding: 0.5rem 1rem;
    background: #ED1C24;
    color: #fff;
    text-align: center;
}
.big {
    font-size: 1.35em;
    line-height: 1.3;
    font-weight: bold;
}
@media only screen and (max-width: 749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
   
    p :is(span, a) {
        display: inline-block;
    }
    header figure {
        display: flex;
        justify-content: center;
        padding: 1rem;
    }
}
@media only screen and (max-width:480px) {
    h1 span {
        font-size: 1.9em;
    }
    article {
        padding: 1rem;
    }
}