* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

#wrapper {
    text-align: center;
    max-width: 800px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    padding: 50px 50px 30px;
}

header {
    margin-bottom: 9%;
}

p {
    margin-bottom: 20px;
}

strong {
    font-weight: 700;
}

h1 {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
}

h2 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

.link {
    color: #467886 !important;
}

ul li {
    margin-bottom: 7px;
}

ul {
    margin-bottom: 22px;
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.nobr {
    white-space: nowrap;
}

@media all and (max-width: 799px) {
    #wrapper {
        margin: 0;
        padding: 5%;
        border: navajowhite;
    }

    br:not(.br br) {
        display: none;
    }
}