* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
    color: #001871;
    font-family: 'Titillium Web', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
}

#wrapper sup {
    line-height: 1;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    padding: 2% 5%;
    border-top: 10px solid #001871;
}

#wrapper .article {
    padding: 2% 5%;
    border-bottom: 10px solid #001871;
}

#wrapper p {
    margin-bottom: 20px;
    text-align: justify;
}

#wrapper p.flex span {
    display: inline-block;
    width: 150px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 18px;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 700;
}

#wrapper h3 {
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #001871;
    text-decoration: none;
}

#wrapper ul {
    padding: 0 0 20px 24px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-family: Arial, sans-serif;
    color: #001871;
    font-size: 22px;
    position: absolute;
    top: -1px;
    left: 0;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

@media all and (max-width: 799px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .header,
    #wrapper .article {
        padding: 16px;
    }

    #wrapper p {
        text-align: left;
        margin-bottom: 12px;
    }

    #wrapper h1 {
        font-size: 30px;
    }
}

@media all and (max-width: 499px) {
    #wrapper {
        font-size: 15px;
    }

    #wrapper .header {
        display: flex;
        justify-content: center;
    }

    #wrapper ul {
        padding-left: 0;
    }

    #wrapper p.flex span {
        width: auto;
    }
}