* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 12px auto;
    box-shadow: 1px 1px 10px #adadad;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Source Sans 3", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    border-radius: 6px;
}

#wrapper .center {
    text-align: center;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 26px 16px;
    display: flex;
    justify-content: center;
}

#wrapper .article {
    padding: 20px 30px;
}

#wrapper .footer h2 {
    text-align: left;
}

#wrapper .button a {
    display: inline-block;
    padding: 10px 30px;
    background: #00b2e3;
    color: #fff;
    border-radius: 5px;
}

#wrapper .button {
    display: flex;
    justify-content: center;
}

#wrapper .footer {
    padding: 20px 30px;
    background: #F2F5F7;
}

#wrapper .footer p:last-child {
    margin-bottom: 0;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 15px;
    font-size: 33px;
    font-weight: 700;
    color: #00b2e3;
    line-height: 1.1;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 700;
    color: #00b2e3;
    line-height: 1.1;
}

#wrapper h2 {
    margin-bottom: 16px;
    font-size: 30px;
    font-weight: 700;
    color: #00b2e3;
    line-height: 1;
    text-align: center;
}

#wrapper .blue {
    color: #00b2e3;
}

#wrapper a {
    color: #00b2e3;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 15px 10px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}

#wrapper ul li:before {
    content: '\2022';
    color: #00b2e3;
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -2px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 8px;
        border: none;
    }

    #wrapper .article,
    #wrapper .footer {
        padding: 16px;
    }
}

@media (max-width: 499px) {
    #wrapper {
        font-size: 14px;
    }
    
    #wrapper ul {
        margin-left: 0;
    }

    #wrapper ul li:before {
        top: -4px;
    }
}