@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;
}

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:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 1.7rem;
    line-height: 1.3;
    text-align: center;
    color: #fff;
    margin: -8.5rem 0 0;
    padding: 1rem;
}

h2 {
    font-size: 1.6rem;
    font-weight: normal;
    position: absolute;
    top: 6rem;
    left: 2.063rem;
    color: #80c342;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
    padding: 2.5rem 2rem 1.5rem 1rem;
}

h3 {
    font-size: 1rem;
}

h4 {
    font-size: 1.1rem;
    color: #80c342;
}

ul {
    padding: 0 0 1rem 1rem;
}

header a {
    position: absolute;

    top: 2.3rem;
    right: 2.3rem;
}

article {
    margin: 2rem 2rem 0;
    border: 1px dotted #9ab8da;
}

.flex {
    padding: 1rem 1rem 0;
    display: flex;
    gap: 1rem;
}

.flex>div {
    flex: 50%;
}

.plus {
    font-size: .7em;
    font-style: italic;
    font-weight: 700;
}

.qr {
    display: flex;
    justify-content: end;
}

footer {
    padding: .625rem 2rem;
    background-color: #034ea2;
    color: #fff;
    text-align: center;
}

@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;
    }

    h1 {
        color: #000;
        margin: 0;
    }

    h1 br {
        display: none;
    }
}

@media only screen and (max-width: 46rem) {
    header a {
        top: 1.3rem;
        right: 1.3rem;
    }

    h2 {
        top: 5rem;
        left: 1.063rem;
    }

    article {
        margin: 1rem 1rem 0;
    }
}

@media only screen and (max-width: 40rem) {
    header {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    header a {
        position: static;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        position: static;
        padding: 0;
    }

    .flex {
        display: block;
        padding-bottom: 1rem;
    }

    .qr {
        justify-content: center;
    }
}