@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: .937rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50.625rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 .625rem;
    letter-spacing: -0.02px;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem 1.875rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem
}

h4 {
    text-decoration: underline;
    width: fit-content;
    margin-bottom: .625rem;
}

header {
    text-align: right;
    padding: .625rem 1.875rem;
}

article {
    padding: 0 1.875rem;
}

footer {
    padding: 0 2.812rem;
    font-size: .812rem;
}

article > p:last-of-type {
    padding-left: 1.875rem;
    letter-spacing: -0.3px;
}

article > p:last-of-type a {
    color: #0563C1;
    text-decoration: underline;
}

@media only screen and (max-width: 50.562rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    article,
    footer {
        padding: 0;
    }

    ul {
        margin-left: 0;
    }

    br {
        display: none;
    }

    h1 {
        font-size: 1.375rem;
        margin: .625rem 0;
    }

    article > p:last-of-type {
        padding-left: 0;
    }
}

@media only screen and (max-width: 23.438rem) {

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}
