* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 856px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 40px 80px 80px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-align: justify;
}

.center {
    text-align: center;
}

.center>strong:nth-of-type(1) {
    padding-right: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    margin: 15px -2rem;
    flex-direction: row-reverse;
    gap: 10px;
}

footer {
    padding: 2px 5px;
    border: 3px solid #3f7156;
    margin: 36px -10px 0;
}

footer p {
    margin: 0;
}

p {
    margin: 0 0 16px;
}

p span {
    white-space: nowrap;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 32px 0 16px;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
}

h2 {
    margin: 0 0 30px;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
}

h3 {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
}

a {
    color: #000;
    text-decoration: none;
}

a.link {
    color: #000FFF;
    text-decoration: underline;
}

ul {
    padding: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 25px;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 22px;
    text-indent: -25px;
    font-family: Arial, Helvetica, sans-serif;
}

:is(p, li) {
    hyphens: auto;
    text-wrap: pretty;
    text-align: left;
}

img {
    max-width: 100%;
}

.color {
    color: #0563C1;
}

.margin {
    margin: 0;
}

.justify {
    text-align: justify;
}

@media (max-width: 855px) {
    #wrapper {
        padding: 5%;
        border: none;
        text-align: left;
        margin: 0;
    }

    header {
        margin: 0 0 30px;
    }

    .justify {
        text-align: left;
    }

    footer {
        margin: 25px 0 0;
    }

    ul li {
        padding-left: 20px;
    }

    li:before {
        text-indent: -20px;
    }

    br {
        display: none;
    }
}

@media (max-width: 480px) {
    #wrapper {
        padding: 16px;
    }
}