@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #EBF0F0
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    padding: 2rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

h1 {
    font-size: 1.65rem;
    color: #fff;
    position: absolute;
    top: 20rem;
    text-align: center;
    padding: 1rem;
}

h2 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 1rem 1rem;
}

article {
    padding: 2rem;
}

.content {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.content section {
    width: 50%;
}

.qr {
    position: absolute;
    bottom: 10rem;
    right: 5rem;
}

footer {
    padding: 1rem 2rem;
    background-color: #133878;
    margin: 0 -2rem;
}

footer p {
    color: #fff;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    footer {
        margin: 0;
    }
}

@media only screen and (max-width: 48rem) {
    .content {
        flex-direction: column;
    }

    .content section {
        width: 100%;
    }

    .qr {
        position: static;
        margin: 0 auto;
    }

    h1 {
        position: static;
        color: #000;
    }
 
    article {
        padding: 1rem;
    }
    
    footer {
        padding: 1rem;
    }
}

@media only screen and (max-width: 40rem) {
    h1 {
        font-size: 1.35rem;
    }
}

