* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 830px;
    margin: 16px auto;
    border: 3px solid #688AAB;
    box-shadow: 0 0 10px 10px #cfcfcf;
    background-color: #fff;
    overflow: hidden;
    color: #688AAB;
    font-family: "Exo 2", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    border-radius: 30px;
}

#wrapper .center {
    text-align: center;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 0 16px;
    display: flex;
    justify-content: center;
    background: #557991;
}

#wrapper .article {
    padding: 20px 40px;
}

#wrapper .footer {
    padding: 20px 40px;
    background: #688AAB;
}

#wrapper .footer :is(p, a) {
    color: #fff !important;
}

#wrapper .flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    column-gap: 10px;
    flex-wrap: wrap;
}

#wrapper .flex p {
    font-size: 18px;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 14px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
}

#wrapper h2 {
    margin-bottom: 20px;
    font-size: 27px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

#wrapper h3 {
    margin-bottom: 13px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #688AAB;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 18px 14px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: "\002022";
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -2px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 829px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper h1 {
        font-size: 30px;
    }

    #wrapper .article,
    #wrapper .footer {
        padding: 16px;
    }
}

@media (max-width: 499px) {
    #wrapper {
        font-size: 15px;
    }

    #wrapper ul {
        margin-left: 0;
    }
}