: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: 640px;
    margin: 16px auto;
    border: 1px solid #000;
    background: #f0f2e9;
}

header {
    position: relative;
}

article {
    padding: 10px 16px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 0;
}

footer {
    padding: 14px 16px;
    background: #f48b2a;
    color: #fff;
    position: relative;
}

strong {
    font-weight: 700;
}

h1 {
    font-weight: 700;
    font-size: 80px;
    line-height: 84px;
    position: absolute;
    z-index: 3;
    right: 16px;
    top: 2px;
    color: transparent;
}

h2 {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 23px;
    line-height: 27px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.item:nth-of-type(1) {
    border-left: none;
}

.item {
    padding: 0 20px;
    border-left: 1px solid #f48b2a;
    text-align: center;
}

.item p {
    font-size: 10px;
    line-height: 13px;
    margin-top: 4px;
}

footer p {
    margin-bottom: 5px;
}

footer p img {
    margin-right: 8px;
}

.qrcode {
    position: absolute;
    z-index: 3;
    right: 10px;
    top: 10px;
}

h1 small {
    display: block;
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
    margin: 26px 0 0 18px;
    text-shadow: none;
}

footer a {
    color: #fff !important;
}

@media all and (max-width: 639px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    h1 {
        font-size: 12.35vw;
        line-height: 1.2;
    }

    h1 small {
        font-size: 26%;
        line-height: 1.2;
        margin-left: 3%;
        margin: 4% 0 0 3%;
    }
}

@media all and (max-width: 600px) {
    .qrcode {
        position: static;
        margin-top: 10px;
    }
}