@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.2;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 .625rem;
    text-align: justify;
}

h1 {
    font-size: 2rem;
    color: #fff;
    background: #1862A8;
    padding: .625rem 1.25rem 1.25rem;
    text-align: center;
    font-style: italic;
    margin: .75rem 0;
    line-height: 1.2;
}

h1 span {
    font-size: 1.5rem;
    display: block;
    padding-top: .3rem;
}

h2 {
    font-size: 1.125rem;
    color: #1862A8;
    margin: .75rem 0 0;
}

h3 {
    color: #D30052;
    font-size: 1.437rem;
    margin: .312rem 0 1.25rem;
}

ul {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

ul li {
    padding-left: .937rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -.937rem;
    font-size: 1rem;
    line-height: 1.3;
}

section,
.container {
    padding: 0 .625rem;
}

footer {
    margin-top: 1.875rem;
    padding-right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer p {
    text-align: left;
}

.column {
    display: flex;
    justify-content: space-between;
}

.column p {
    width: 45%;
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        text-align: left;
    }

    h1 {
        font-size: 1.7rem;
        padding: .625rem 1rem;
    }

    h1 span {
        font-size: 1.125rem;
    }

    h3 {
        font-size: 1.125rem;
        margin-bottom: .625rem;
    }

    footer {
        margin-top: .625rem;
    }
}

@media only screen and (max-width: 36.25rem) {
    footer {
        margin-top: .625rem;
        display: block;
    }

    footer p,
    h3,
    footer section p {
        text-align: center;
    }

    .column {
        display: block;
    }

    .column p {
        width: 100%;
    }

    .logo {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 28rem) {
    h1 {
        font-size: 1.5rem;
    }
}