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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    color: #221A29;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .article .ml0 {
    margin-left: 0;
}

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

#wrapper .article p {
    margin-left: 11px;
}

#wrapper .article {
    padding: 20px 30px;
}

#wrapper .footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.11);
}

#wrapper .footer p {
    text-align: center;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 800;
    color: #ef780e;
    text-align: center;
}

#wrapper h4 {
    color: #ef780e;
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 14px;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 10px;
    padding: 8px 10px;
    font-size: 18px;
    font-weight: 800;
    border: 2px solid rgba(0, 0, 0, 0.2);
    display: inline-block;
    color: #ef780e;
    border-left: 6px solid #ef780e;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #ef780e;
    text-decoration: underline;
}

#wrapper ul {
    margin: 0 0 17px 12px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 15px;
    position: relative;
}

#wrapper ul li:before {
    content: "\0025a0";
    color: #ef780e;
    font-size: 10px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 2px;
    line-height: 1;
    left: 0;
}

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

@media all and (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

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

    #wrapper .article {
        padding: 10px 16px 2px;
    }

    #wrapper h1 {
        font-size: 21px;
        line-height: 26px;
    }

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

@media all and (max-width: 499px) {

    #wrapper .article p,
    #wrapper ul {
        margin-left: 0;
    }
}