: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: 560px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 46px 37px;
    background: #fffbed url('../images/backgrund.jpg') no-repeat right top;
}

strong {
    font-weight: 700;
}

h1 {
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    color: #d7b230;
}

h1 span {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

h2 {
    margin: 0 0 28px;
    font-weight: 700;
    font-size: 50px;
    line-height: 46px;
    color: #d7b230;
}

h2 :is(small, span) {
    display: block;
    color: #000;
}

h2 span {
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
}

h2 small {
    font-size: 53px;
    line-height: 55px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 410px;
    list-style: none;
}

ul li {
    padding-left: 8px;
    position: relative;
    font-size: 20px;
    line-height: 24px;
}

li:before {
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 11px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.qrcode {
    padding: 10px;
    border-radius: 15px;
    margin-bottom: -7px;
    position: relative;
    z-index: 99;
    background: #fffbed;
}

.flex {
    display: flex;
    justify-content: flex-start;
    gap: 10px 25px;
    align-items: flex-end;
    margin: -30px -18px 0 0;
}

.image {
    position: absolute;
    z-index: 3;
    right: -37px;
    top: -5px;
}

article {
    position: relative;
}

@media all and (max-width: 559px) {
    #wrapper {
        margin: 0;
        padding: 16px;
        border: none;
    }

    .image {
        right: -16px;
    }

    .flex {
        margin-right: 0;
        flex-wrap: wrap;
    }
}

@media all and (max-width: 525px) {
    .flex {
        margin-top: 16px;
    }

    ul {
        padding-bottom: 16px;
    }

    .image {
        position: static;
        display: flex;
        justify-content: flex-end;
        margin-right: -16px;
    }
}