@charset "utf-8";
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v30-latin-500.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-500.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-500.woff') format('woff'),
        url('../fonts/roboto-v30-latin-500.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-500.svg#Roboto') format('svg');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/roboto-v30-latin-900.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-900.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-900.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-900.woff') format('woff'),
        url('../fonts/roboto-v30-latin-900.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-900.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 500 1em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff url('../images/bg.jpg') no-repeat;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
:is(h1, h2) {
    font-weight: 900;
    color: transparent;
    text-transform: uppercase;
}
h1 {
    margin: 0;
    font-size: 2.1em;
    line-height: 1.9;
    text-align: right;
}
h2 {
    font-size: 1.6em;
    line-height: 1.3;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    opacity: 0;
}
article {
    position: absolute;
    right: 3%;
    top: 7%;
}
footer {
    padding: 0.125rem 1.5rem 0.125rem 0.75rem;
    background: #C83B3C url('../images/bgb.jpg') no-repeat;
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
    align-items: center;
}
footer p {
    color: #fff;
    text-align: right;
    letter-spacing: 0.4px;
    word-spacing: 2px;
    font-size: 1.125em;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
    }
    header {
        opacity: 1;
    }
    article {
        position: static;
        padding: 1rem;
    }
    article br {
        display: none;
    }
    :is(h1, h2) {
        color: #C83B3C;
        text-align: center;
    }
    h1 {
        font-size: 1.6em;
        line-height: 1.3;
    }
}
@media only screen and (max-width:620px) {
    footer {
        background: #C83B3C;
        padding: 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    footer p {
        text-align: center;
        letter-spacing: 0;
        word-spacing: 0;
    }
}