@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 480px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #C3102E;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1, h2 {
    margin: 0 0 1.5rem;
    font-size: 2.8em;
    line-height: 1.2;
    text-align: center;
}
h1 span{
    font-size: 0.8em;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    position: absolute;
    right: 0;
    bottom: 4.5rem;
}
article{
    padding: 2.5rem 1rem;
}
figure{
    display: flex;
    justify-content: center;
}
@media only screen and (max-width:499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    h1, h2{
        font-size: 1.75em;
    }
}