@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #002060;
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 850px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 16px;
}

h1,
h2,
h3 {
    font-size: 16px;
}

h1 {
    margin: 0 0 16px;
}

h3 {
    color: #7A7D7C;
}

ul {
    list-style: none;
    margin: 5px 0 20px;
    padding: 0;
}

ul li {
    padding-left: 33px
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -33px;
    font-size: 1.375em;
    line-height: 1;
}

ul:nth-of-type(2) li:before {
    margin-left: -25px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 50px 30px 0 60px;
}

article {
    padding: 0 60px;
}

footer {
    padding: 0 60px 50px;
}

@media only screen and (max-width: 849px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    header {
        padding: 16px;
    }

    article {
        padding: 0 16px;
    }

    footer {
        padding: 0 16px 16px;
    }
}

@media only screen and (max-width: 580px) {
    header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    h1 {
        text-align: center;
    }

    ul li {
        padding-left: 25px
    }

    ul li:before {
        margin-left: -25px;
    }

    ul:nth-of-type(2) li:before {
        margin-left: -25px;
    }
}
