* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Roboto", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
}

#wrapper {
    max-width: 910px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}


#wrapper article {
    padding: 20px 40px;
}

#wrapper footer {
    position: relative;
}

#wrapper footer p {
    padding: 5px 10px;
    position: absolute;
    bottom: 17%;
    right: 12%;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.9);
}

#wrapper p {
    margin-bottom: 16px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    padding: 10px 40px;
    font-size: 28px;
    font-weight: 700;
    background: #375BA9;
    color: #fff;
}

#wrapper h3 {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 400;
    color: #003399;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #003399;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 20px 10px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 18px;
    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: 909px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper article {
        padding: 16px;
    }

    #wrapper h1 {
        padding: 10px 16px;
        font-size: 23px;
    }

    #wrapper footer p {
        bottom: 16px;
        right: 16px;
    }

    #wrapper footer img {
        min-height: 100px;
        object-fit: cover;
    }

    #wrapper p {
        text-align: left;
    }
}