* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 876px;
    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: 19px;
    font-weight: 400;
}

header {
    padding: 0 0 22px;
    display: flex;
    justify-content: flex-end;
}

p {
    margin: 0 0 16px;
    text-align: justify;
    hyphens: auto;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 16px 0;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    color: #419090;
    text-align: justify;
}

h2 {
    margin: 32px 0 9px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #419090;
}

h3 {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    font-style: italic;
}

.strong {
    text-decoration: underline;
}

a {
    color: #000;
    text-decoration: none;
}

ul {
    margin: 0 0 10px;
    list-style: none;
}

ul li {
    padding-left: 50px;
}

li:before {
    content: url(icon.jpg);
    float: left;
    text-indent: -25px;
}

img {
    max-width: 100%;
}

@media all and (max-width:874px) {
    #wrapper {
        margin: 0;
        padding: 5%;
        border: none;
    }

    :is(p, h1) {
    	text-align: left;
    }

    span {
    	white-space: nowrap;
    }

    br {
        display: none;
    }
}

@media all and (max-width:767px) {
    header {
        justify-content: center;
        padding: 0 0 16px;
    }

    ul li {
        padding-left: 20px;
    }

    li:before {
        text-indent: -20px;
    }
}