@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), 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: local(''), 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 {
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
}

#wrapper {
    max-width: 460px;
    margin: 16px auto;
    border: 1px solid #cbcbcb;
    padding: 20px 20px;
    background: #7cc242;
}

header {
    margin: 0 -20px 15px 0;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0 0 16px;
}

.flex img {
    box-shadow: 5px 5px 21px 1px rgba(0, 0, 0, 0.39);
}

footer {
    position: relative;
}

.qrcode {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 999;
}

p {
    margin: 0 0 4px;
}

h1 {
    margin: 12px 0 16px;
    font-weight: 400;
    font-size: 16px;
    color: #231f20;
    background: #fff;
    padding: 10px 16px 10px 28px;
    box-shadow: 6px 6px 21px 1px rgba(0, 0, 0, 0.39);
    border-radius: 0 0 30px 0;
}

h1:before {
    content: '\2022';
    float: left;
    margin-top: -1px;
    font-size: 28px;
    text-indent: -20px;
}

h1 span {
    white-space: nowrap;
}

h2 {
    font-weight: 700;
    font-size: 1.28125rem;
    line-height: 26px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 459px) {
    #wrapper {
        margin: 0 auto;
        padding: 1rem;
        border: none;
    }

    header {
        margin: 0 -16px 15px 0;
    }

    .flex {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 16px;
    }

    .qrcode {
        position: static;
        margin: 16px 0 0;
        display: flex;
        justify-content: center;
    }

    footer p {
        text-align: center;
    }

    p {
        hyphens: auto;
        text-wrap: pretty;
    }
}