@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.125em/1.3 'Times New Roman', Times, serif;
}
#wrapper {
    position: relative;
    max-width: 790px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #B5034A;
    background-color: #F0EFE8;
    overflow: hidden;
}
h1, h3 {
    margin: 0 0 0.75rem 1rem;
    font-size: 1em;
    line-height: 1.1;
}
:is(h1, h3) span {
    font-weight: 400;
    display: inline-block;
}
h1::before, h3::before {
    content: "\2022";
    float: left;
    margin: 0 0 0 -1rem;
}
h2 {
    font-size: 2em;
    line-height: 1.3;
    margin-bottom: 3rem;
    color: #B5014A;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
}
header {
    padding: 0.5rem 1rem 0.125rem;
    background-color: #B5014A;
    display: flex;
    justify-content: center;
}
main {
    padding: 3rem 2.5rem 0.5rem;
}
.qr {
    display: flex;
    align-items: center;
    gap: 1.125rem;
}
footer {
    display: flex;
    align-items: center;
    gap: 4.5rem;
    padding-top: 3rem;
}
@media only screen and (max-width:789px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    main {
        padding: 1rem;
    }
    footer, .qr {
        flex-direction: column;
        gap: 1rem;
    }
    footer p, h2 {
        text-align: center;
    }
    .qr p br {
        display: none;
    }

}
@media only screen and (max-width: 480px) {
    h2 {
        font-size: 2em;
        margin-bottom: 1.5rem;
    }
}