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

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto", Arial, sans-serif;
    color: #4b4a4d;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    padding: 60px;
}

#wrapper .color,
#wrapper .text strong,
#wrapper .color a {
    color: #ff3d00 !important;
}

#wrapper .hide {
    display: none;
}

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

#wrapper header {
    margin-bottom: 21px;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 17px;
    font-size: 36px;
    font-weight: 700;
    color: #7f216b;
    text-align: center;
    line-height: 1.2;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #2b5a85;
    text-transform: uppercase;
}

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

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

#wrapper .button a {
    display: inline-block;
    padding: 8px 20px;
    background: #00577d;
    color: #fff;
}

#wrapper .button a:hover {
    opacity: 0.9;
}

#wrapper ul {
    margin: 0 0 20px 28px;
    list-style: none;
}

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

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

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

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 799px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        padding: 16px;
    }

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

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

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

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