: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: 1rem;
    line-height: 1.25rem;
    font-weight: 400;
}

#wrapper {
    max-width: 810px;
    margin: 1rem auto;
    border: 4px solid #d4de23;
    background: #fff;
    position: relative;
}

header {
    display: flex;
    justify-content: center;
}

article {
    padding: 0.625rem 1rem 0.375rem;
}

footer {
    position: absolute;
    z-index: 3;
    right: 0.625rem;
    bottom: 0.625rem;
}

p {
    margin: 0 0 0.25rem;
}

strong {
    font-weight: 700;
}

h1 {
    font-weight: 700;
    font-size: 2.375rem;
    line-height: 2.75rem;
    color: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.flex {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.item {
    width: 15.625rem;
}

.color {
    color: #d4de23;
}

.title {
    background: #d4de23;
    margin: 0.625rem -1rem;
    padding: 1.5625rem 1rem;
    position: relative;
}

.qrcode {
    position: absolute;
    z-index: 3;
    right: 1rem;
    bottom: -1.3125rem;
}

@media all and (max-width: 809px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    p {
        text-align: left;
        hyphens: auto;
    }

    .none {
        display: none;
    }
}

@media all and (max-width: 720px) {
    .qrcode {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }

    h1 {
        text-align: center;
    }

    .item:nth-of-type(1) {
        width: calc(100% - 16.875rem);
    }

    footer {
        position: static;
        padding: 0 1rem 0.625rem;
    }
}

@media all and (max-width: 575px) {
    h1 {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    .item {
        width: 100% !important;
    }
}