:root {
    font-size: 16px;
}

@font-face {
    font-display: swap;
    font-family: 'Carlito';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/carlito-v3-latin-regular.eot');
    src: url('../fonts/carlito-v3-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/carlito-v3-latin-regular.woff2') format('woff2'),
        url('../fonts/carlito-v3-latin-regular.woff') format('woff'),
        url('../fonts/carlito-v3-latin-regular.ttf') format('truetype'),
        url('../fonts/carlito-v3-latin-regular.svg#Carlito') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Carlito';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/carlito-v3-latin-700.eot');
    src: url('../fonts/carlito-v3-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/carlito-v3-latin-700.woff2') format('woff2'),
        url('../fonts/carlito-v3-latin-700.woff') format('woff'),
        url('../fonts/carlito-v3-latin-700.ttf') format('truetype'),
        url('../fonts/carlito-v3-latin-700.svg#Carlito') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    line-height: 20px;
    font-family: 'Carlito', Arial, sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 600px;
    margin: 16px auto;
    padding: 26px 26px 23px 20px;
    overflow: hidden;
    background: #fff url('../images/background.jpg') no-repeat 0 0;
    min-height: 440px;
}

h1 {
    margin: 69px 0 34px 133px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400;
    color: #00AFAD;
}

h1 strong {
    font-size: 20px;
}

h1:before {
    content: "\2022";
    color: #00AFAD;
    float: left;
    margin-top: -4px;
    font-size: 32px;
    line-height: 1em;
    text-indent: -24px;
    font-family: Arial, sans-serif;
}

h2 {
    margin: 11px 0;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 700;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
}

article {
    position: relative;
}

.color {
    color: #00AFAD;
    display: block;
}


.intro {
    width: 184px;
}

.logo {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 100px 0 0;
}

.qrcode {
    position: absolute;
    top: 187px;
    left: 37px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
}

h3 a {
    display: inline-block;
    padding: 9px 16px;
    background-color: #00B0AD;
    color: #fff !important;
    border-radius: 16px;
}

@media all and (max-width:600px) {
    #wrapper {
        margin: 0;
        border: none;
        background-image: none;
        padding: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h2 {
        position: static;
        padding: 9px 16px;
        background-color: #00AFAD;
        margin: 0;
    }

    article {
        position: relative;
        padding: 16px;
    }

    .intro {
        width: 100%;
    }

    h1 {
        margin: 16px 0 12px 24px;
        font-size: 18px;
        line-height: 1.25;
        font-weight: 400;
        color: #00AFAD;
    }

    .qrcode {
        position: static;
    }

    .logo {
        position: static;
        transform: translateX(0);
    }

    footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 0 16px 16px 8px;
        gap: 16px;
    }

    .flex {
        margin-top: 10px;
    }
}