: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: 530px;
    margin: 16px auto;
    border: 3px solid #d2232a;
    background: #fff;
}

article {
    padding: 8px 10px;
    position: relative;
}

footer {
    padding: 4px 10px 0;
    background: #d2232a;
    position: relative;
}

p {
    margin: 0 0 20px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: -8px 0 12px;
    font-weight: 700;
    font-size: 29px;
    line-height: 34px;
    color: #a21418;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 20px;
    list-style: none;
}

ul li {
    padding-left: 12px;
    position: relative;
}

li:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 9px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

p:last-of-type {
    margin-bottom: 0;
}

footer :is(p, a) {
    color: #fff !important;
    font-size: 12px;
}

.text {
    position: absolute;
    right: 10px;
    top: 4px;
}

.color {
    color: #a21418 !important;
}

h1 span {
    font-size: 18px;
    line-height: 22px;
	white-space: nowrap;
}

.qrcode {
    position: absolute;
    z-index: 3;
    right: 10px;
    bottom: 10px;
}

@media all and (max-width: 529px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
    }

    article {
        padding: 10px 16px;
    }

    footer {
        padding: 4px 16px;
    }
}

@media all and (max-width: 515px) {
    .qrcode {
        position: static;
        margin-top: 15px;
    }

    .none {
        display: none;
    }

    .text {
        position: static;
    }
}