@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #212C5A;
    font: 400 1em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
strong {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.9em;
    line-height: 1.2;
    font-weight: 600;
    color: #EE1E23;
    position: absolute;
    left: 1rem;
    top: 0.5rem;
    z-index: 1;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    position: relative;
}
header a:nth-of-type(1) {
    position: absolute;
    top: 1%;
    right: 30%;
    width: 9%;
    height: 13%;
    z-index: 1;
}
header a:nth-of-type(2) {
    position: absolute;
    top: 0;
    right: 7%;
    width: 28%;
    height: 33%;
}
footer {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}
footer p a {
    display: inline-block;
    background: #fff;
    padding: 0.25rem 0.5rem;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p a, span {
        display: inline-block;
    }
    h1 {
        font-size: 3.8vw;
    }
}
@media only screen and (max-width:480px) {
    footer p {
        font-size: 0.7em;
        line-height: 1.2;
    }
}