* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 850px;
    margin: 12px auto;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.2;
    box-shadow: 1px 1px 10px #ccc;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .content {
    position: relative;
    padding-left: 210px;
}

#wrapper .content h3 {
    position: absolute;
    top: 0;
    left: 0;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    padding: 20px;
    display: flex;
    justify-content: center;
}

#wrapper .article {
    padding: 20px 60px;
    background: #e3f6f5;
}

#wrapper .footer {
    padding: 20px 58px;
    background: #004A58;
}

#wrapper .footer p {
    color: #fff;
}

#wrapper .footer h3 {
    color: #fff;
    margin-bottom: 12px;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
    color: #fb3099;
    text-align: center;
}

#wrapper h3 {
    font-size: 18px;
    line-height: 1.2;
    color: #fb3099;
    font-weight: 700;
}

#wrapper a {
    color: #fff;
    text-decoration: none;
}

#wrapper a:hover {
    text-decoration: underline;
}

#wrapper ul {
    margin-bottom: 15px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #fb3099;
    font-size: 21px;
    position: absolute;
    top: -1px;
    left: 0;
    line-height: 1;
    font-family: Arial, sans-serif;
}

#wrapper img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 849px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    #wrapper .header {
        padding: 16px;
    }

    #wrapper .article,
    #wrapper .footer {
        padding: 16px 16px 4px;
    }
}

@media (max-width: 599px) {
    #wrapper .content {
        margin-top: 15px;
        padding-left: 0;
    }

    #wrapper .content h3 {
        position: static;
        margin-bottom: 10px;
    }

    #wrapper .footer .content {
        margin-top: 0;
    }
}