@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;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid .125rem #AF203B;
    border-left: 1.25rem solid #AF203B;
    border-right: 1.25rem solid #AF203B;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1rem;
}

strong {
    font-size: 1.187rem;
}

ul {
    margin: 0 0 0.625rem 1rem;
}

h1 {
    background: #AF203B;
    color: #fff;
    font-size: 2rem;
    margin: 1.25rem -.937rem;
    line-height: 1.2;
    padding: .625rem .937rem;
}

h1 span {
    font-size: .9em;
}

h2 {
    font-size: 1.187rem;
    margin-top: 1.25rem;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .937rem;
    text-align: center;
}

article,
footer {
    padding: 0 .937rem;
}

@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;
    }
}