:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700.woff') format('woff'), url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}

html {
    min-height: 100%;
}

body {
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.1875rem;
    font-weight: 400;
}

#wrapper {
    max-width: 650px;
    margin: 1rem auto;
    border: 1px solid #000;
    padding: 0.6875rem 1.5rem 0.625rem;
    background: #000 url('../images/background.jpg') no-repeat 0 0;
    position: relative;
}

header {
    padding: 0 0 1.375rem;
}

article {
    padding: 0 0 3.8125rem 2.125rem;
}

footer {
    position: absolute;
    z-index: 3;
    right: 1rem;
    bottom: 0.8125rem;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 0.9375rem;
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 2.125rem;
}

h2 {
    margin: 0 0 1rem;
    font-size: 1.1875rem;
    line-height: 1.375rem;
    text-align: center;
}

h3 {
    margin: 0 0 4.75rem;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 2.75rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}


h2 small {
    font-size: 1rem;
    line-height: 1.25rem;
}

h3 small {
    display: block;
    font-style: italic;
    font-size: 1.0625rem;
    line-height: 1.375rem;
    margin-top: 0.1875rem;
}

.qrcode {
    display: flex;
    justify-content: flex-end;
}

@media all and (max-width: 649px) {
    #wrapper {
        margin: 0;
        padding: 1rem;
        border: none;
        background: #000 url('../images/background.jpg') no-repeat 0 0;
        background-size: cover;
    }
}

@media all and (max-width: 555px) {
    article {
        padding: 0;
    }

    h3 {
        margin: 0 0 1rem;
    }

    h1 br {
        display: none;
    }

    footer {
        position: static;
    }

    .qrcode {
        justify-content: center;
    }
}