:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.0625rem;
    line-height: 1.3125rem;
    color: #000;
    font-weight: 400;
}

#wrapper {
    margin: 0.75rem auto;
    border: 1px #000 solid;
    max-width: 875px;
    background-color: #FFFFFF;
    overflow: hidden;
}

header {
    padding: 3.125rem;
    display: flex;
    justify-content: flex-end;
}

article {
    padding: 0 4.6875rem;
}

footer {
    padding: 1.25rem 4.6875rem 1.875rem;
}

footer p {
    display: flex;
    column-gap: 20px;
    font-size: 18px;
    line-height: 22px;
}

footer :is(p, a) {
    color: #365F91 !important;
}

p {
    margin-bottom: 1.25rem;
    text-align: justify;
    hyphens: auto;
}

h1 {
    margin: 2.5rem 0 4rem;
    font-size: 1.25rem;
    line-height: 1.7;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: #1F497D;
    font-weight: 700;
}

h2 {
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 0 1.25rem;
}

:is(a, a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

a ins {
    color: #0000FF;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin-bottom: 1.25rem;
    list-style: none;
}

ul li {
    padding-left: 4.125rem;
}

ul li:before {
    content: '\2022';
    float: left;
    text-indent: -1.5625rem;
    font-size: 1.625rem;
}

@media only screen and (max-width: 874px) {
    #wrapper {
        border: none;
        hyphens: auto;
        margin: 0 auto;
    }

    header {
        justify-content: center;
        padding: 1.5rem 1rem;
    }

    article {
        padding: 0 1rem;
    }

    footer {
        padding: 1rem;
    }

    footer p {
        justify-content: center;
        flex-wrap: wrap;
    }

    h1 {
        margin: 2.5rem 0;
        line-height: 1.5;
    }

    ul li {
        padding-left: 1.5625rem;
    }

    p {
        text-align: left;
    }

    a {
        white-space: nowrap;
    }
}