body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 23px;
    color: #000;
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

#wrapper {
    margin: 1rem auto;
    max-width: 850px;
    position: relative;
    padding: 70px 135px;
    background-color: #FFFFFF;
    border: 1px solid #000;
    overflow: hidden;
}

p {
    margin-bottom: 20px;
}

h1 {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 10px;
}

h1 span {
    display: block;
}

p span {
    white-space: nowrap;
}

h2 {
    font-size: 17px;
    padding: 30px 0 20px;
    font-weight: 700;
}

a {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    list-style: none;
    margin-bottom: 20px;
}

ul li {
    padding-left: 25px;
}

li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 30px;
    text-indent: -25px;
}

:is(p, ul) {
    text-align: justify;
}

:is(p, ul) span {
    white-space: nowrap;
}

strong {
    font-weight: 700;
}

header {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 40px;
}

@media only screen and (max-width:892px) {
    #wrapper {
        border: none;
        hyphens: auto;
        padding: 1rem;
        box-shadow: none;
    }

    .no {
        display: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
        text-align: left;
    }

    :is(p, ul) span {
        white-space: nowrap;
    }
}

@media only screen and (max-width:480px) {
    body {
        font-size: 15px;
        line-height: 21px
    }
}