@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    font-size: 16px;
}
body {
    color: #d5242a;
    font: 400 1em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    max-width: 580px;
    margin: 1rem auto;
    border: 1px solid #000;
    padding: 1rem;
    background-color: #00B9ED;
    position: relative;
}
header div {
    display: flex;
    justify-content: center;
    padding: 1rem;
    background: #fff;
}
@keyframes slidy {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    60% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
:is(.slide, .slide img:nth-of-type(1)) {
    position: relative;
}
.slide img {
    vertical-align: bottom;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 10s linear 0s infinite normal forwards;
}
.slide img:nth-child(2) {
    animation-delay: 5s;
}
footer {
    padding: 0.75rem 1rem;
    background: #fff;
}
:is(footer, .qrcode, .logo) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
p {
    margin: 0 0 0.625rem;
}
:is(strong, h1, h2) {
    font-weight: 700;
}
h1 {
    padding: 0.75rem 1rem;
    font-size: 2.375rem;
    line-height: 2.75rem;
    background: #d5242a;
    color: #fff;
}
h1 small {
    display: block;
    font-weight: 400;
    font-size: 1.9375rem;
    line-height: 2.1875rem;
}
h2 {
    padding: 0.75rem 1rem;
    font-size: 3rem;
    line-height: 3.25rem;
    background: #FFF;
    color: #d5242a;
    text-align: center;
}
h2 span {
    display: block;
    margin: 0 0 1rem;
}
h3 {
    font-weight: 400;
    font-size: 1.375rem;
    line-height: 1.625rem;
    color: #000;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #d5242a;
    text-decoration: none;
    white-space: nowrap;
}
@media all and (max-width: 579px) {
    #wrapper {
        margin: 0;
        border: none;
    }
    footer {
        justify-content: space-around !important;
    }
    h1 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    h2 {
        font-size: 8vw;
        line-height: 1.2;
    }
    :is(p, h1) {
        hyphens: auto;
    }
    br:not(footer br) {
        display: none;
    }
}