* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 999px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 20px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Work Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.4;
}

#wrapper .logo {
    display: flex;
    justify-content: center;
    margin: 25px 0 40px;
}

#wrapper .button {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

#wrapper .button a {
    display: inline-block;
    background: #005962;
    color: #fff !important;
    padding: 16px 46px;
    transition: 0.5s;
    text-align: center;
}

#wrapper .button a:hover {
    background: #087984;
}

#wrapper .hide {
    display: none;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 600;
}

#wrapper h1 {
    margin-bottom: 16px;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 600;
    color: #005962;
}

#wrapper h3 {
    padding-top: 30px;
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 600;
    color: #005962;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 16px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 14px;
    margin-bottom: 10px;
    position: relative;
}

#wrapper ul ul li:before {
    content: '\25CB';
    font-size: 13px;
    top: 2px;
}

#wrapper ul ul {
    margin: 10px 0 0;
}

#wrapper ul li:before {
    content: '\2022';
    color: #005962;
    font-size: 22px;
    position: absolute;
    top: -1px;
    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: 998px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }
}

@media all and (max-width: 499px) {
    #wrapper {
        padding: 16px;
    }

    #wrapper .btn a {
        padding: 16px 35px;
    }

    #wrapper h1 {
        font-size: 28px;
    }
}