:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.125rem;
    line-height: 1.375rem;
    font-weight: 400;
}

#wrapper {
    max-width: 862px;
    margin: 1rem auto;
    border: 1px solid #000;
    padding: 6.25rem;
    background: #fff;
}

p {
    margin: 0 0 1rem;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.375rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

ul {
    padding: 0 0 0 1.75rem;
    list-style: none;
}

ul li {
    padding-left: 1.6875rem;
    position: relative;
    padding-bottom: 1rem;
}

li:before {
    content: "";
    width: 0.3125rem;
    height: 0.3125rem;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0.5625rem;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 861px) {
    #wrapper {
        margin: 0;
        padding: 1rem;
        border: none;
    }

    p span {
        white-space: nowrap;
    }

    :is(ul, p) {
        hyphens: auto;
    }
}

@media all and (max-width: 575px) {
    ul {
        padding-left: 0;
    }

    ul li {
        padding-left: 0.9375rem;
    }
}