:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 22px;
}

#wrapper {
    max-width: 890px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 60px 56px 79px 79px;
    background-color: #fff;
}

header {
    display: flex;
    justify-content: flex-end;
}

article {
    padding: 30px 0 16px;
}

.margin {
    margin: 0 0 36px;
}

:is(.center, h3) {
    font-size: 18px;
    margin: 0 0 1rem;
}

:is(.center, h1, h2) {
    text-align: center;
}

p {
    margin: 0 0 18px;
}

:is(h1, h2, h3) {
    color: #1fa22e;
}

:is(h1, h2) {
    margin: -1px 0 20px;
    font-size: 24px;
    line-height: 30px;
}

:is(h1 span, h2) {
    font-weight: 400;
}

h2 {
    margin: 0 0 18px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 20px 18px 52px;
    list-style: none;
}

li:before {
    content: '\25A0';
    float: left;
    font-size: 10px;
    color: #1fa22e;
    text-indent: -26px;
}

img {
    max-width: 100%;
}


@media all and (max-width: 888px) {
    #wrapper {
        margin: 0 auto;
        padding: 5%;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    ul {
        margin-right: 0;
    }

    article br{
        display: none;
    }
}

@media all and (max-width: 767px) {
    #wrapper {
        padding: 16px;
    }

    header {
        justify-content: center;
    }

    ul {
        margin: 0 0 18px 18px;
    }

    li:before {
        text-indent: -18px;
    }


}