@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

a.link,
.color {
    color: #172983;
}

p {
    margin-bottom: 1.25rem;
}

h1 {
    font-size: 1.7rem;
    text-align: center;
    color: #172983;
    margin: 2rem 0;
}

h2 {
    font-size: 1.2rem;
    line-height: 1.3;
    color: #172983;
    margin: 1.5rem 0 .625rem;
}

ul {
    list-style: none;
    margin: 0 0 1.25rem;
}

ul li {
    margin: 0 0 .5rem 3rem;
}

ul li:before {
    content: "\25B6";
    float: left;
    margin-left: -1.5rem;
    color: #d4b056;
    font-size: .875rem;
}

.big {
    color: #172983;
    font-size: 1.2rem;
    font-weight: 700;
}

.table {
    display: flex;
    margin: .625rem 0;
}

.table div {
    flex: 1 1 9rem;
}

.table>div:not(:last-of-type) {
    border-right: 1px solid #000;
}

.table div p {
    padding: .5rem;
    margin: 0;
    text-align: center;
}

.table div p:first-of-type {
    background-color: #e8d8b0;
    border-bottom: 1px solid #000;
    color: #172983;
    padding: .3rem .5rem;
}

.qr {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.qr>a {
    margin: 0 1.5rem;
}

article {
    padding: 2rem;
}

footer {
    padding: 1rem 2rem;
    display: flex;
    align-items: end;
    justify-content: center;
    column-gap: 1rem;
    color: #172983;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .table div {
        flex: 1 1 auto;
    }
}

@media only screen and (max-width: 45rem) {
    article {
        padding: 1rem;
    }

    footer {
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    p,
    ul {
        margin-bottom: 1rem;
    }

    h2 {
        margin: 1rem 0 .3rem;
    }

    .table {
        flex-direction: column;
    }

    .table>div:not(:last-of-type) {
        border-right: none;
    }
}

@media only screen and (max-width: 37rem) {
    h1 {
        font-size: 1.45rem;
        margin: 1rem 0;
        line-height: 1.3;
    }

    h1 br {
        display: none;
    }

    h2 {
        font-size: 1.1rem;
    }

    ul li {
        margin-left: 1.5rem;
    }

    .qr {
        padding: 1rem 0;
    }

    .qr>img {
        display: none;
    }
}