@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #055459;
    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 0.0625rem #000;
    padding: 2.5rem 2.5rem .625rem;
    background: url('../images/bottom.png') no-repeat bottom;
    background-size: contain;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #E9426E;
}

p {
    margin: 0 0 1rem;
}

h3,
h1 {
    background: #E9426E;
    display: inline-block;
    margin: .062rem 0 0;
    color: #fff;
    line-height: 1.2;
    padding: 8px 20px;
    font-size: 22px;
}

h2 {
    background: #F8AC2A;
    width: 71%;
    color: #fff;
    padding: 0 1.25rem;
    font-size: 35px;
    margin-bottom: 2px
}

h4 {
    font-size: 1rem;
}

ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

ul li {
    padding-left: 50px;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -23px;
    font-size: 1.375rem;
    line-height: 1;
}

header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

article {
    padding: 1rem 0;
}

.column {
    width: 78%;
}

footer {
    font-size: .75rem;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    header {
        align-items: center;
        flex-direction: column;
    }

    .column {
        width: auto;
    }

    h1 br {
        display: none;
    }

    h2 {
        text-align: center;
        width: auto;
        font-size: 1.437rem;
        margin: 10px 0 0;
    }

    h3,
    h1 {
        width: auto;
        text-align: center;
        display: block;
        font-size: 1.25rem;
    }

    ul li {
        padding: 0 0 0 1rem;
    }

    ul li:before {
        margin-left: -1rem;
    }

    footer p {
        text-align: center;
    }
}