* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: #F1F1F1;
    font-family: "Open Sans", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.7;
}

#wrapper {
    max-width: 720px;
    margin: 16px auto;
    border: 1px solid #A7A9A4;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    position: relative;
}

#wrapper header a {
    position: absolute;
    top: 9%;
    left: 3%;
    width: 15%;
    height: 15%;
}

#wrapper article {
    padding: 35px 4.5% 0;
}

#wrapper .color {
    color: #B70051;
}

#wrapper footer {
    padding: 0 4.5% 10px;
}

#wrapper p {
    margin-bottom: 16px;
    text-align: justify;
}

#wrapper .center {
    text-align: center;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #B70051;
}

#wrapper .block {
    display: block;
}

#wrapper h3 {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
    color: #B70051;
    line-height: 1.3;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #B70051;
    text-decoration: none;
}

#wrapper a:hover {
    text-decoration: underline;
}

#wrapper .button {
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    background: #b70051;
    padding: 10px 40px;
    cursor: pointer;
    border: 1px solid #b70051;
    transition: all 140ms ease 0s;
    color: #fff;
}

#wrapper .button a:hover {
    background-position: 15px center;
    background-color: #fff;
    text-decoration: none;
    color: #b70051;
}

#wrapper ul {
    margin-bottom: 16px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 16px;
    position: relative;
}

#wrapper ul li:before {
    content: url(iconlist.png);
    position: absolute;
    top: 0;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 719px) {
    #wrapper {
        border: none;
        margin: 0;
        box-shadow: none;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
        text-align: left;
    }

    #wrapper .block {
        display: inline;
    }

    #wrapper article {
        padding: 16px 5% 0;
    }

    #wrapper footer {
        padding: 0 5% 10px;
    }

    #wrapper header a {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 619px) {
    #wrapper {
        font-size: 14px;
    }
}