@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: #231f20;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 758px;
    margin: 16px auto;
    border: 1px solid #231f20;
    background-color: #fff;
}

article {
    padding: 10px 30px;
}

footer {
    padding: 16px 30px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.flex .box {
    width: 48%;
}

.relative {
    position: relative;
}

.qrcode {
    position: absolute;
    right: 72px;
    top: 26px;
    z-index: 9;
}

.mobile {
    display: none;
}

.margin {
    margin: 0 0 6px;
}

p {
    margin: 0 0 12px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 27px;
    line-height: 1.25;
    color: #ed1c2a;
}

h2 {
    font-weight: 700;
    font-size: 16px;
    color: #00aeef;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #231f20;
    text-decoration: none;
    white-space: nowrap;
}

a.color {
    color: #00aeef !important;
}

img {
    max-width: 100%;
}

@media all and (max-width: 756px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    article {
        padding: 10px 16px;
    }

    footer {
        padding: 16px;
    }

    .qrcode {
        right: 30px;
    }

    p {
        hyphens: auto;
        text-wrap: pretty;
    }

    h1 br {
        display: none;
    }
}

@media all and (max-width: 610px) {
    .br {
        display: none;
    }

    .flex {
        display: block;
    }

    .flex .box {
        width: 100%;
    }

    .qrcode {
        position: static;
        margin: 0 0 10px;
    }

    .mobile {
        display: inline;
    }

    .desktop {
        display: none;
    }
}

@media all and (max-width: 539px) {
    footer {
        flex-direction: column;
    }
}