@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/rubik-v28-latin-600.eot');
    src: url('../fonts/rubik-v28-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/rubik-v28-latin-600.woff2') format('woff2'), url('../fonts/rubik-v28-latin-600.woff') format('woff'), url('../fonts/rubik-v28-latin-600.ttf') format('truetype'), url('../fonts/rubik-v28-latin-600.svg#Rubik') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.eot');
    src: url('../fonts/open-sans-v40-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v40-latin-regular.woff') format('woff'), url('../fonts/open-sans-v40-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v40-latin-regular.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333333;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 55rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
    padding: 2.5rem;
}

header {
    display: flex;
    column-gap: 1.875rem;
    align-items: center;
}

h1,
h2 {
    font-family: 'Rubik', Arial, sans-serif;
}

h1 {
    text-align: center;
    font-size: 1.937rem;
    line-height: 1.3;
    margin: 0.625rem 0;
}

h2 {
    font-size: 1.125rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    white-space: nowrap;
    font-weight: normal;
    text-decoration: none;
}

a.link {
    font-weight: 700;
    text-decoration: underline;
}

.logo {
    display: block;
    width: fit-content;
}

.qr {
    position: absolute;
    bottom: -1rem;
    right: 3rem;
}

.title {
    border-top: #FFD500 solid .187rem;
    border-bottom: #FFD500 solid .187rem;
    padding: 1.25rem 0;
    margin: .937rem 0 1.875rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.title * {
    margin: 0;
}

p {
    margin: 1.25rem 0;
}

span {
    white-space: nowrap;
}

ul {
    list-style: none;
    margin: .937rem 0 3.125rem .625rem;
    padding: 0;
}

li {
    padding-left: 1.375rem
}

li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 2.125rem;
    line-height: .6;
    color: #FFD500;
}

footer {
    position: relative;
}

@media only screen and (max-width: 54.9375rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    header {
        column-gap: 0;
        justify-content: space-between;
    }

    h1 br {
        display: none;
    }

    h2 {
        margin: 0 0 .312rem;
    }

    header {
        flex-direction: column-reverse;
        row-gap: 1.5rem;
    }


    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }
}

@media only screen and (max-width: 48rem) {

    h1 {
        font-size: 1.5rem;
    }

    .title {
        padding: 1rem 0;
        margin: 1rem 0;
    }

    .qr {
        right: 0;
    }
}

@media only screen and (max-width: 30rem) {
    .qr {
        position: static;
    }

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    footer * {
        text-align: center;
    }
}