: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-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

#wrapper {
    max-width: 820px;
    margin: 16px auto;
    border: 1px solid #000;
    background: #fff;
}

article {
    padding: 20px 90px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer {
    padding: 20px 16px;
    background: #d7deda;
    text-align: center;
}

p {
    margin: 0 0 12px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 10px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    font-size: 27px;
    line-height: 33px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

ul {
    padding: 0 0 12px 18px;
    list-style: none;
}

ul li {
    padding-left: 10px;
    position: relative;
    margin-bottom: 6px;
}

li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 7px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.box {
    background: #d7deda;
    padding: 12px 50px 20px;
}

.box p {
    text-align: justify;
}

.left {
    width: 46%;
}

.right {
    width: 51%;
}

hr {
    border: none;
    background: #000;
    width: 66%;
    display: block;
    margin: 20px auto;
    height: 2px;
}

footer p {
    font-size: 18px;
    line-height: 23px;
}

@media all and (max-width: 819px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    .box {
        padding: 16px;
    }

    .box p {
        text-align: left;
    }

    article {
        padding: 16px;
    }

    footer {
        padding: 16px 16px 10px;
    }

    p span {
        white-space: nowrap;
    }
}

@media all and (max-width: 650px) {
    :is(.left, .right) {
        width: 100% !important;
    }

    ul {
        padding-left: 0;
    }
}