@font-face {
    font-family: 'Rotis Sans Serif Std';
    src: url('../fonts/RotisSansSerifStd-ExtraBold.woff2') format('woff2'), url('../fonts/RotisSansSerifStd-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rotis Sans Serif Std';
    src: url('../fonts/RotisSansSerifStd-Bold.woff2') format('woff2'), url('../fonts/RotisSansSerifStd-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rotis Sans Serif Std';
    src: url('../fonts/RotisSansSerifStd.woff2') format('woff2'), url('../fonts/RotisSansSerifStd.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-family: 'Rotis Sans Serif Std', Arial, sans-serif;
    font-size: 17px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 528px;
    margin: 16px auto;
    border: 1px solid #a7a18e;
    background-color: #fff;
    position: relative;
}

article {
    padding: 26px 16px 5px;
    background: #efece5;
    margin: 0 16px 0;
}

.content {
    padding: 15px 32px;
    background: #a7a18e;
    position: relative;
}

.content:before {
    content: "";
    width: 100%;
    height: 19px;
    background: rgba(169, 163, 143, 0.5);
    position: absolute;
    bottom: -19px;
    left: 0;
}

.content p {
    color: #fff;
}

footer {
    padding: 0 16px 16px;
    background: #efece5;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: -55px 16px 16px;
}

.qrcode p {
    margin: 0 0 3px;
    font-size: 14px;
    line-height: 18px;
}

.logo-footer-right {
    display: flex;
    justify-content: right;
    flex-direction: row-reverse;
    gap: 14px;
    align-items: flex-end;
}

.logo-footer-right p {
    margin: 0;
    text-align: right;
    font-size: 14px;
    line-height: 1.12;
}

p {
    margin: 0 0 22px;
}

span {
    white-space: nowrap;
}

strong {
    font-weight: 800;
}

:is(h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 0 0 25px;
    font-size: 38px;
    line-height: 1.2;
    color: #6d6859;
}

h1 small {
    display: block;
    font-size: 18px;
    line-height: 24px;
    margin: 2px 0 0;
}

h2 {
    letter-spacing: 2px;
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 19px;
}

h3 {
    margin: 16px 0 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    color: #fff;
    letter-spacing: 2px;
}

ul {
    margin: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 20px;
}

li:before {
    content: '\2022';
    color: #6d6859;
    float: left;
    font-size: 15px;
    text-indent: -20px;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}

@media only screen and (max-width: 527px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(h2, h3, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    footer {
        margin-top: 0;
    }
}

@media only screen and (max-width:450px) {
    footer {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .qrcode {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .qrcode p {
        text-align: center;
    }
}

@media only screen and (max-width:360px) {
    .logo-footer-right {
        flex-direction: column;
        align-items: center;
    }

    .logo-footer-right p {
        text-align: center;
    }
}