@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');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 625px;
    margin: 1rem auto;
    border: 8px solid #f36e21;
    background-color: #fff;
    position: relative;
}

header {
    padding: 4px 5px 12px;
    background: #f36e21;
    display: flex;
    justify-content: flex-start;
}

article {
    padding: 13px 13px 40px;
    display: flex;
    align-items: flex-start;
    gap: 75px;
}

.left {
    width: 230px;
}

.right {
    width: 242px;
}

footer {
    padding: 0px;
}

.qr-code {
    position: absolute;
    bottom: 11px;
    right: 11px
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 20px;
    line-height: 24px;
    margin: 10px 0 0;
}

h1 span {
    font-weight: 400;
    font-size: 18px;
}

h1 small {
    font-weight: 400;
    font-size: 16px;
    display: block;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:625px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    p {
        hyphens: auto;
        text-wrap: pretty
    }

    p span {
        white-space: nowrap;
    }

    :is(.left, .right) {
        width: 47%;
    }

    article {
        justify-content: space-between;
        gap: 10px
    }

    .no {
        display: none
    }
}

@media only screen and (max-width:430px) {
    article {
        display: block;
    }

    :is(.left, .right) {
        width: auto
    }
}

@media only screen and (max-width:400px) {
    article {
        padding-block: 10px
    }

    .qr-code {
        position: static;
        display: flex;
        justify-content: center;
        padding: 16px
    }
}