* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    color: #000;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px #ccc;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

header {
    padding: 30px 16px 0;
    display: flex;
    justify-content: center;
}

.title {
    background: #004F90;
    padding: 30px 40px;
    margin: 0 -40px 32px;
}

.title p {
    color: #fff;
    margin-bottom: 0;
}

article {
    padding: 30px 40px;
}

p {
    margin-bottom: 15px;
}

strong {
    font-weight: 700;
}

h1 {
    margin-bottom: 14px;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

h2 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #004f90;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

ul {
    margin: 0 0 20px 10px;
    list-style: none;
}

ul li {
    padding-left: 16px;
    margin-bottom: 7px;
    position: relative;
}

ul li:before {
    content: '\2022';
    color: #000;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 19px;
    line-height: 1;
    font-family: Arial, sans-serif;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.nobr {
    white-space: nowrap;
}

@media all and (max-width: 899px) {
    #wrapper {
        margin: 0;
    }

    .title {
        padding: 16px 40px;
        margin-bottom: 16px;
    }

    article {
        padding: 16px;
    }

    br:not(.br br) {
        display: none;
    }
}

@media all and (max-width: 499px) {
    ul {
        margin-left: 0;
    }
}