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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    border: 1px solid #d82f2f;
    background-color: #fff;
    box-shadow: 0 0 10px 10px #cfcfcf;
    overflow: hidden;
    color: #6a6a6a;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.3;
}

#wrapper .justify {
    text-align: justify;
}

#wrapper .logo {
    padding: 10px 16px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #D82F2F;
}

#wrapper .hide {
    display: none;
}

#wrapper .article {
    padding: 20px 45px 0;
}

#wrapper .footer {
    padding: 20px 45px 0;
    background: #D82F2F;
    color: #fff;
}

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

#wrapper p.big {
    font-size: 19px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 33px;
    font-weight: 700;
    color: #D82F2F;
    text-align: center;
}

#wrapper h3 {
    padding: 8px 10px;
    font-size: 18px;
    font-weight: 700;
    background: #D82F2F;
    color: #fff;
    border-radius: 8px 8px 0 0;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

#wrapper ul {
    margin-bottom: 30px;
    padding: 10px;
    list-style: none;
    background: #F4F4F6;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
    border-radius: 0 0 8px 8px;
}

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

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

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

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

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

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

    #wrapper .justify {
        text-align: left;
    }
}

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

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

    #wrapper {
        font-size: 16px;
    }

    #wrapper h1 {
        font-size: 28px;
    }
}