* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 1px 1px 10px #c0c0c0;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Merriweather", Times, serif;
    font-size: 16px;
    line-height: 1.4;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    padding: 16px;
    display: flex;
    justify-content: center;
}

#wrapper .article {
    padding: 0 30px 10px;
}

#wrapper .footer {
    border-top: 3px solid #6b2718;
    padding: 20px 30px;
    background: #FAFAFA;
}

#wrapper p {
    padding-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 0 -30px 20px;
    font-size: 25px;
    font-weight: 700;
    background: #6b2718;
    color: #fff;
    padding: 20px 30px;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #6b2718;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #6b2718;
    text-decoration: none;
}

#wrapper .button {
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 25px;
    background: #6b2718;
    color: #fff;
    border-radius: 5px;
    transition: .2s;
}

#wrapper .button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

#wrapper ul {
    margin: 0 0 15px 10px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}

#wrapper ul ul li:before {
    content: "\0025cb";
    font-size: 18px;
    top: 1px;
}

#wrapper ul li:before {
    content: "\002022";
    color: #6b2718;
    font-size: 25px;
    position: absolute;
    top: -2px;
    left: 0;
    line-height: 1;
    font-family: Arial, sans-serif;
}

#wrapper img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        border: none;
        font-size: 15px;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article {
        padding: 0 16px 7px;
    }

    #wrapper .footer {
        padding: 16px 16px 0;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }
}