@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');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #414141;
    line-height: 1.125rem;
    font-size: 11px;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 600px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #E6E8DA;
}

article {
    padding: 0 40px;
}

footer {
    padding: 23px 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

h1 {
    margin: 1rem 0;
    font-size: 18px;
    line-height: 23px;
    font-weight: 400;
    padding: 0 0 0 16px;
}

h1:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 20px;
    text-indent: -1rem;
}

h2 {
    font-size: 23px;
    margin: 1rem 0;
    font-weight: normal;
    line-height: 25px;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #414141;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

.flex {
    display: flex;
    padding: 1rem 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.solical {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 65px;
    font-size: 11px;
}

.qrcode {
    display: flex;
    justify-content: flex-end;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

@media all and (max-width:599px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, h1) {
        hyphens: auto;
        text-wrap: pretty;
    }

    article {
        padding: 0 1rem;
    }

    footer {
        padding: 1rem;
    }

    .flex {
        display: flex;
        padding: 1rem 1rem 0;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media all and (max-width:374px) {
    footer {
        justify-content: center;
    }
}