@font-face {
    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-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');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-condensed-v25-latin-300.eot');
    src: url('../fonts/roboto-condensed-v25-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-300.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-300.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-300.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-300.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v25-latin-700.eot');
    src: url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #5f5f62;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 632px;
    margin: 1rem auto;
    border: 1px solid #5f5f62;
    background-color: #fff;
    position: relative;
}

header {
    position: relative;
}

.top {
    width: 166px;
    position: absolute;
    top: 90px;
    right: 0;
}

.top p {
    background: #64b32c;
    padding: 5px;
    color: #fff;
    font-weight: 700;
    margin-top: 6px !important;
}

.qr-code {
    position: absolute;
    bottom: 180px;
    left: 6px;
}

.title {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    position: absolute;
    bottom: 27px;
    right: 0
}

.title :is(h1, p) {
    font-family: 'Roboto Condensed', Arial, sans-serif;
}

.title p {
    background: #64b32c;
    padding: 5px 10px;
    color: #fff;
    font-weight: 300;
    font-size: 12px;
    line-height: 17px;
}

.title p strong {
    font-weight: 400 !important
}

article {
    padding: 16px;
}

.logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

footer {
    padding: 0px;
}

.logo-bottom {
    position: absolute;
    bottom: 16px;
    right: 16px;
}

p:not(:first-of-type) {
    margin-top: 16px;
}

h1 {
    font-size: 14px;
    line-height: 1.1;
    padding: 5px 10px;
    color: #64b32c;
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:632px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    p {
        hyphens: auto;
        text-wrap: pretty
    }

    p span {
        white-space: nowrap;
    }
}

@media only screen and (max-width:525px) {
    :is(.qr-code, .logo-bottom) {
        position: static;
    }

    footer {
        padding: 0 16px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}