:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v51-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v51-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v51-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v51-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v51-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v51-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v51-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v51-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v51-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v51-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v51-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v51-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}
body {
    font: 400 1em/1.25 'Roboto', Arial, sans-serif;
    color: #000;
}

#wrapper {
    position: relative;
    max-width: 1005px;
    margin: 1rem auto;
    border: 1px solid #000;
    padding: 20px 90px;
    overflow: hidden;
    background-color: #fff;
}

h1 {
    margin: 0.625rem 0;
    font-size: 23px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
}

h2 {
    font-size: 1rem;
    line-height: 1.3125rem;
    font-weight: 700;
    margin: 1rem 0;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

footer div {
    width: calc(100% - 150px);
}

img {
    max-width: 100%;
    vertical-align: middle;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1rem;
    text-align: justify;
    hyphens: auto;
}
.pb {
    margin-bottom: 0;
}
ul {
    margin: 0 0 16px;
}

ul li {
    padding-left: 35px;
    list-style: none;
    text-align: justify;
    hyphens: auto;
    position: relative;
}

ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 4px;
    top: 8px;
}

a.link {
    color: #00f;
    text-decoration: underline;
}

h1 small {
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

@media all and (max-width:1004px) {
    #wrapper {
        margin: 0;
        padding: 16px;
        border: none;
        hyphens: auto;
    }

    :is(p, ul li) {
        text-align: left;
    }

    span {
        white-space: nowrap;
    }

    br {
        display: none;
    }

    footer br {
        display: inline;
    }
}

@media all and (max-width:500px) {
    ul li {
        padding-left: 20px;
    }

    ul li::before {
        left: 0;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    footer div {
        width: auto !important;
    }
}