* {
    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: "Roboto", Arial, sans-serif;
    color: #000;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.3;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 20px;
    display: flex;
    justify-content: center;
}

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

#wrapper .footer {
    padding: 20px 30px;
    border-top: 2px solid #000;
}

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

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

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

#wrapper h3 {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #D9000D;
}

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

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

#wrapper .button a {
    display: inline-block;
    padding: 11px 25px;
    background: #D9000D;
    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 ul {
    margin-top: 8px;
}

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

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

#wrapper ul li:before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 10px;
    height: 15px;
    background: #D9000D;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

#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 16px;
    }

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