:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@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');
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 1090px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 0 0 0 220px;
    background: #4e88c7;
    position: relative;
}

header {
    width: 220px;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    padding: 10px 16px;
}

article {
    padding: 10px 30px 6px;
    background: url('../images/background.jpg') no-repeat 0 0;
    background-size: cover;
}

footer {
    padding: 10px 16px 25px;
    width: 220px;
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 11px;
    flex-wrap: wrap;
}

p {
    text-align: center;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 25px;
    padding-left: 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    background: url('../images/icon.jpg') no-repeat 0 2px;
}

h2 {
    margin: 20px -10px 0 0;
    font-weight: 700;
    font-size: 25px;
    line-height: 29px;
    color: #fff;
    text-align: center;
}

h3 {
    margin: 0 0 5px;
    font-weight: 700;
    font-size: 54px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 20px #4e88c7, 0 0 20px #4e88c7, 0 0 20px #4e88c7, 0 0 20px #4e88c7;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.color {
    color: #f99e37 !important;
}

.box {
    background: #fff;
    padding: 16px 12px;
    border: 1px solid #4795c9;
    height: 394px;
}

h3 small {
    display: block;
    font-size: 28px;
    line-height: 32px;
}

h1 small {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
}

.qrcode {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

@media all and (max-width: 1089px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    p {
        hyphens: auto;
    }

    .box {
        padding: 16px;
    }
}

@media all and (max-width: 767px) {
    #wrapper {
        padding: 0;
    }

    header {
        position: static;
        width: auto;
    }

    h2 {
        text-shadow: 0 0 2px #000, 0 0 2px #000, 0 0 2px #000;
    }

    article {
        padding: 16px;
    }

    .box {
        height: auto;
    }

    footer {
        position: static;
        width: auto;
        padding: 16px;
        flex-direction: row;
    }
}