* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 999px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    padding-bottom: 40px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .hide {
    display: none;
}

#wrapper .article {
    padding: 20px 20px 0;
}

#wrapper .footer {
    padding: 0 20px;
    position: relative;
}

#wrapper .flex {
    display: flex;
    column-gap: 25px;
    flex-wrap: wrap;
}

#wrapper .link {
    color: #0000ff !important;
}

#wrapper p {
    margin-bottom: 10px;
}

#wrapper .button a {
    display: inline-block;
    background: #a0c8c8;
    padding: 16px 26px;
    color: #fff !important;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.5s;
}

#wrapper .button a:hover {
    background: #99d4d4;
}

#wrapper p.just {
    text-align: justify;
}

#wrapper h1 {
    font-size: 36px;
    line-height: 1.1;
    color: #a0c8c8;
    margin: 25px 0 4px;
}

#wrapper h1+p {
    margin-bottom: 25px;
}

#wrapper h2 {
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.1;
}

#wrapper h3 {
    margin-bottom: 10px;
    margin-top: 35px;
    font-size: 16px;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 35px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 39px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #000;
    font-size: 24px;
    position: absolute;
    top: -3px;
    left: 21px;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

#wrapper .nobr {
    white-space: nowrap;
}

@media (max-width:998px) {
    #wrapper {
        padding: 0;
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper .article {
        padding: 20px 16px 0;
    }

    #wrapper p.just {
        text-align: left;
    }

    #wrapper .footer {
        padding: 0 16px;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }
}

@media all and (max-width:499px) {
    #wrapper {
        font-size: 15px;
    }

    #wrapper ul li {
        padding-left: 20px;
    }

    #wrapper ul li:before {
        left: 0;
    }

    #wrapper h1 {
        font-size: 30px;
    }
}