@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v48-latin-regular.eot');
    src: url('../fonts/roboto-v48-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v48-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v48-latin-regular.woff') format('woff'), url('../fonts/roboto-v48-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v48-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v48-latin-700.eot');
    src: url('../fonts/roboto-v48-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v48-latin-700.woff2') format('woff2'), url('../fonts/roboto-v48-latin-700.woff') format('woff'), url('../fonts/roboto-v48-latin-700.ttf') format('truetype'), url('../fonts/roboto-v48-latin-700.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    padding: 2.5rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    white-space: nowrap;
    text-decoration: none;
}

p {
    margin: 0 0 16px 0;
}

span {
    white-space: nowrap;
}

ul {
    list-style: none;
    margin: .937rem 0 25px .625rem;
    padding: 0;
}

ul li {
    padding-left: 22px
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -20px;
    font-size: 30px;
    line-height: .8;
}

h1 {
    text-align: center;
    font-size: 31px;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

h2 {
    font-size: 28px;
    margin: 45px 0 16px;
}

header {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    align-items: center;
}

.qr {
    margin: 20px 0;
    display: flex;
}

.title {
    border-top: #FFD500 solid 5px;
    border-bottom: #FFD500 solid 5px;
    padding: 16px 0;
    margin: 16px 0 30px;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

footer {
    position: relative;
    margin-top: 40px
}

@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    header {
        column-gap: 0;
        justify-content: space-between;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h2 {
        font-size: 1.375rem;
        margin: 0 0 1rem;
    }
}

@media only screen and (max-width: 768px) {
    header {
        flex-direction: column-reverse;
        row-gap: 10px;
    }

    .title {
        padding: 1rem 0;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
        line-height: 1.3
    }

    ul {
        margin-left: 0;
    }

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}