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

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Open Sans", Arial, sans-serif;
    color: #000;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    border: 4px solid #243251;
    background-color: #fff;
    overflow: hidden;
}

#wrapper .hide {
    display: none;
}

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

#wrapper .logo {
    padding: 2% 5%;
    background: #243251;
}

#wrapper article {
    padding: 2% 5% 0;
}

#wrapper footer {
    padding: 0 5% 5%;
}

#wrapper .button {
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    border-radius: 20px;
    padding: 10px 20px;
    color: #fff !important;
    background: linear-gradient(-270deg, #243251 0%, #5B657C 70%, #7AC1C5 100%, #7AC1C5 100%), linear-gradient(-270deg, #243251 0%, #5B657C 70%, #7AC1C5 100%, #7AC1C5 100%);
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 10px 0;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
    color: #243251;
    text-align: center;
}

#wrapper h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    padding: 10px 0 5px;
}

#wrapper h3:after {
    display: block;
    content: '';
    width: 200px;
    height: 2px;
    background: linear-gradient(-270deg, #000 35%, rgba(255, 255, 255, 0.35) 100%);
    margin-top: 10px;
}

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

#wrapper ul {
    margin: 0 0 16px 30px;
    list-style: none;
}

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

#wrapper ul li:before {
    content: url(icon.jpg);
    position: absolute;
    top: 1px;
    line-height: 1;
    left: 0;
}

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

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        border: none;
    }

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

@media (max-width: 499px) {
    #wrapper .logo {
        display: flex;
        justify-content: center;
    }

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

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