@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #FFF;
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #E51837;
    overflow: hidden;
    padding: 0;
}
hr {
    border: none;
    background: #FFF;
    height: 1px;
    width: 100%;
    text-align: center;
    margin: 0.5rem 0 1rem;
}
p {
    padding-bottom: 2rem;
    font-size: 1.19em;
    line-height: 1.3em;
}
p span.big {
    font-size: 1.4em;
    line-height: 1.3em;
}
h1 {
    margin: 0 -2rem 1rem;
    font-size: 1.389em;
    line-height: 1.3;
    padding: 1rem 2rem;
}
h1 span {
    font-size: 0.7em;
    font-weight: 400;
}
h1 small {
    font-size: 0.8em;
}
h1 img {
    vertical-align: -3px;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0 1rem;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
header img {
    display: block;
}
article {
    padding: 0 2rem 2rem;
    position: relative;
}
.center {
    display: flex;
    justify-content: center;
}
footer {
    padding: 0 2rem 1rem;
    position: absolute;
    bottom: 0.5rem;
    right: 0;
    display: flex;
    justify-content: start;
    align-items: flex-start;
}
footer p, h1 {
    background: #FFF;
    color: #E51837;
}
footer p {
    display: inline-block;
    padding: 0 0.2rem 0.2rem;
    border-radius: 5px;
    text-align: center;
    font-size: 1.35em;
    line-height: 1.3em;
}
@media only screen and (max-width: 499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span), h1 span, h1 small {
        display: inline-block;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
    article, footer {
        padding: 0 1rem 1rem;
    }
}