* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Ubuntu", Arial, sans-serif;
    color: #5D767B;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    border-bottom: 10px solid #af1f4a;
    border-top: 10px solid #AF1F4A;
}

#wrapper .center {
    text-align: center;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    padding: 20px;
    display: flex;
    justify-content: center;
}

#wrapper .article {
    padding: 0 30px 10px;
}

#wrapper .footer {
    padding: 20px 30px;
    background: #5D767B;
}

#wrapper .footer :is(p, ul, h3) {
    color: #fff;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 0 -30px 19px;
    font-size: 25px;
    font-weight: 700;
    background: #5D767B;
    border-bottom: 3px solid #AD1548;
    box-shadow: 0 5px 10px #ccc;
    color: #fff;
    text-align: center;
    padding: 16px 30px;
}

#wrapper h3 {
    margin-bottom: 8px;
    font-size: 19px;
    font-weight: 500;
    color: #af1f4a;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 18px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

#wrapper ul li:before {
    content: '\+';
    font-size: 17px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 2px;
    line-height: 1;
    left: 0;
    color: #fff;
    background: #af1f4a;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 799px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article {
        padding: 0 16px 6px;
    }

    #wrapper .footer {
        padding: 16px;
    }
}