@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v27-latin-700.eot');
    src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #2E586E;
    font: 1.55em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    height: 672px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') top right no-repeat, #F5F4EF;
    overflow: hidden;
    padding: 1rem 3rem 2rem;
}
article p {
    padding-bottom: 3.5rem;
    text-transform: uppercase;
}
h1 {
    font-size: 1em;
    line-height: 1.5em;
    font-weight: 400;
    margin: 5rem 0;
    text-transform: uppercase;
}
h2 {
    margin: 0;
    font: 700 2.8em/1em 'Roboto Condensed', Arial, sans-serif;
    text-transform: uppercase;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    display: flex;
    justify-content: flex-end;
}
.qr {
    display: flex;
    gap: 0.8rem;
}
article figure {
    display: none;
}
footer {
    width: fit-content;
    position: absolute;
    bottom: 2rem;
    left: 21rem;
}
footer p {
    text-align: center;
    font: 700 1em/1em 'Roboto Condensed', Arial, sans-serif;
    letter-spacing: 12px;
}
@media only screen and (max-width: 800px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
        height: auto;
    }
    header {
        justify-content: center;
    }
    h1 br {
        display: none;
    }
    h1 {
        margin: 2rem 0;
    }
    article figure {
        display: block;
    }
    footer {
        width: 100%;
    }
    .qr {
        display: flex;
        justify-content: center;
    }
    footer {
        position: static;
    }
}
@media only screen and (max-width:480px) {
    body {
        font-size: 1.2em;
    }
    #wrapper {
        padding: 1rem;
    }
}