* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 860px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 100px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    text-align: justify;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 0 0 3px;
}

.center {
    text-align: center;
}

.color {
    color: #0563C1;
}

p {
    margin: 0 0 20px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 18px;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
}

h2 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 0 25px;
}

a {
    color: #000;
    text-decoration: underline;
    white-space: nowrap;
}

ul {
    margin: 0 0 20px;
    list-style: none;
}

.ul li:before {
    content: '\2010';
    font-size: 16px;
    margin-top: -2px;
}

ul li {
    padding-left: 50px;
}

li:before {
    content: "\2022";
    float: left;
    margin-top: 1px;
    font-size: 11px;
    text-indent: -25px;
}

img {
    max-width: 100%;
}

@media all and (max-width:859px) {
    #wrapper {
        margin: 0;
        padding: 16px;
        border: none;
        text-align: left;
    }

    header {
        padding: 0 0 20px;
    }

    h2 {
        margin: 0 0 0 16px;
    }

    span {
        white-space: nowrap;
    }

    ul li {
        padding-left: 32px;
    }

    li:before {
        text-indent: -16px;
    }

    .mobile {
        display: none;
    }
}