* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
}

header {
    padding: 50px 0 0;
}

article {
    padding: 40px 50px 30px 80px;
}

footer {
    padding: 0 80px 60px;
}

.flex {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0 0 20px;
}

.flex p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

.flex p strong {
    font-size: 15px;
}

span {
    white-space: nowrap;
}

p {
    margin: 0 0 23px;
}

strong {
    font-weight: 700;
}

h1 {
    text-align: center;
    margin: -10px 0 40px;
    font-weight: 700;
    font-size: 15px;
    color: #ff0000;
}

h2 {
    margin: 0 0 10px;
    font-size: 15px;
    color: #008bd0;
    font-weight: 700;
}

a {
    color: #0000ff;
    text-decoration: underline;
}

ul {
    margin: 0 0 35px;
    list-style: none;
}

ul li {
    padding-left: 56px;
    margin: 0 0 5px;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 24px;
    text-indent: -26px;
    line-height: 1.1;
    font-family: Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
}

.center {
    text-align: center;
}

.jus {
    text-align: justify;
}

@media all and (max-width:898px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    .jus {
        text-align: left;
    }

    header {
        padding: 16px 0 0;
    }

    article {
        padding: 16px;
    }

    footer {
        padding: 0 16px 16px;
    }

    h1 {
        margin: 0 0 25px;
    }

    ul li {
        padding-left: 20px;
    }

    li:before {
        text-indent: -20px;
    }
}