@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.125em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 520px;
    margin: 1rem auto;
    border: 3px solid #EE1D23;
    background: #fff;
    overflow: hidden;
    border-radius: 30px;
}
:is(h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.red, .red {
    color: #EE1D23;
}
p {
    padding-bottom: 0.625rem;
}
h1 {
    margin: 0.5rem 0 1.25rem -1.5rem;
    padding: 0.75rem 0.5rem 0.75rem 1.5rem;
    font-size: 1.55em;
    line-height: 1.1;
    background: #EE1D23;
    color: #fff;
    font-weight: 700;
    border-radius: 0 20px 20px 0;
}
h1 span {
    font-size: 0.85em;
    line-height: 1.3;
    display: block;
    font-weight: 400;
    margin-top: 0.25rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
ul {
    padding: 0 0 0.625rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
article {
    padding: 1rem 1.125rem;
}
footer {
    padding: 0 1.5rem 0.4rem;
    position: absolute;
    right: 0;
    bottom: 0;
}
figure {
    margin-top: 0.5rem;
}
footer p {
    text-align: right;
}
@media only screen and (max-width:519px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        border-radius: 0;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    article br {
        display: none;
    }
    footer p {
        margin-top: 1rem;
        text-align: center;
    }
}
@media only screen and (max-width:480px) {
    article, footer {
        padding-inline: 1rem;
    }
}
@media only screen and (max-width:430px) {
    footer {
        position: static;
    }
    footer p:first-of-type br {
        display: none;
    }
    figure {
        display: flex;
        justify-content: center;
    }
}