:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #242021;
}

#wrapper {
    max-width: 860px;
    margin: 1rem auto;
    padding: 16px 30px 30px;
    border: solid thin #242021;
    overflow: hidden;
    position: relative;
}

header {
    display: flex;
    align-items: center;
    gap: 80px;
}

article {
    padding: 16px 0;
}

section p {
    margin: 0 0 10px !important;
    text-align: center !important;!i;!;
}

h1 {
    font-size: 25px;
    margin: 0 0 20px;
    line-height: 32px;
    text-align: center;
}

h3 {
    font-size: 28px;
    line-height: 1.2;
    margin: 30px 0 0;
}

h2 {
    font-size: 16px;
    margin: 16px 0;
    line-height: 20px;
    text-decoration: underline;
}

img {
    max-width: 100%;
}

p:not(:last-child) {
    margin-bottom: 16px;
    text-align: justify;
    hyphens: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 25px;
    text-align: justify;
    hyphens: auto;
}

li:before {
    text-indent: -25px;
    content: "\2022";
    color: #242021;
    float: left;
    font-size: 25px;
}

@media screen and (max-width:859px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 16px;
    }

    :is(p, ul li) {
        hyphens: auto;
        text-align: left;
    }

    span {
        white-space: nowrap;
    }

    p:not(:last-child) {
        text-align: left;
    }
}

@media screen and (max-width:600px) {
    header {
        flex-direction: column;
        gap: 0;
    }

    h3 {
        margin: 16px 0 0;
        font-size: 26px;
    }
}