@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    min-height: 100%;
}
body {
    background: #E7F5FE;
    color: #000;
    font-family: "Arial", sans-serif;
    font-weight: normal;
    font-size: 0.938rem;
}
#wrapper {
    max-width: 50rem;
    margin: 0.75rem auto;
    background-color: #fff;
    overflow: hidden;
    line-height: 1.25rem;
    box-shadow: 1px 1px 10px #cbcbcb;
}
img {
    max-width: 100%;
    height: auto;
}
p {
    margin-bottom: 0.875rem;
}
h1 {
    margin-bottom: .625rem;
    font-size: 1.5rem;
    line-height: 1.3;
    color: #0060A1;
    text-align: center;
}
h2 {
    margin-bottom: .5rem;
    font-size: 1.125rem;
    line-height: 1.375rem;
    font-weight: bold;
    color: #0060A1;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
ul {
    list-style: none;
}
ul li {
    padding: 0 0 0 1.5rem;
}
ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
    font-size: 1.5rem;
    color: #0060A1;
}
.flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flexbox .content {
    width: 49%;
}
.content {
    background: #BBD1EA;
    padding: .75rem;
    margin-top: 0.875rem;
}
header {
    padding: 1rem;
    border-bottom: 10px solid #0060A1;
    display: flex;
    justify-content: center;
}
article {
    padding: 1.25rem 1.875rem;
}
footer {
    padding: 1.25rem 1.875rem .375rem;
    background: #0060A1;
}
footer p {
    color: #fff;
    text-align: center;
}
@media (max-width: 49.938rem) {
    #wrapper {
        margin: 0;
        border: none;
    }
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}
@media (max-width: 48rem) {
    footer {
        padding: .625rem 1rem 1px;
    }
    article {
        margin: 0;
        padding: .625rem 1rem
    }
}
@media (max-width: 40rem) {
    .flexbox .content {
        width: 100%;
    }
    ul li {
        padding-left: 1rem;
    }
}