@charset "utf-8";

:root {
    font-size: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 53.75rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.color,
.blue {
    color: #252273
}

p {
    margin: 0 0 1rem;
}

p span {
    white-space: nowrap;
    color: #D3307D;
}

.center {
    text-align: center;
}

h1 {
    text-align: center;
    font-size: 1.375rem;
    line-height: 1.2;
    margin: 1rem 0;
    color: #D3307D;
}

h1 small {
    font-size: .75em;
}

h2 {
    font-size: 1rem;
    text-align: center;
    color: #D3307D;
    margin: 0 0 1rem
}

h3 {
    font-size: 1rem;
    text-decoration: underline;
    margin: 0 0 .625rem
}

ul {
    list-style: none;
    margin: 0 0 1.875rem;
}

ul li {
    padding-left: 3rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.625rem;
    font-size: 1.375em;
    line-height: 0.9;
}

header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 1.625rem 3.125rem;
    margin: 0 0 1rem;
}

article {
    padding: 0 3.125rem;
}

footer {
    padding: 0 3.125rem 3.125rem;
}

footer p {
    text-align: center;
}

footer :last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 53.6875rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }

    h1 {
        font-size: 1.25rem;
    }

    span {
        white-space: nowrap;
    }

    ul li:before {
        margin-left: -1.375rem;
    }

    header,
    article,
    footer {
        padding: 0;
    }
}

@media only screen and (max-width: 30rem) {

    ul li {
        padding-left: 1.5rem;
    }

    header {
        align-items: center;
        margin: 0.625rem 0 0.937rem;
    }
}