* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 800px;
    margin: 12px auto;
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 59%);
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    display: flex;
    justify-content: center;
    margin: 15px 0 0;
}

#wrapper .article {
    padding: 20px 5%;
}

#wrapper .center {
    text-align: center;
    color: #A53375;
    font-size: 20px;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 5px;
    font-size: 30px;
    font-weight: 700;
    color: #A53375;
    text-align: center;
    line-height: 1.2;
}

#wrapper h2 {
    text-align: center;
    color: #A53375;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

#wrapper h3 {
    margin-bottom: 5px;
    font-size: 20px;
    color: #A53375;
    font-weight: 700;
}

#wrapper a {
    color: #A53375;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 15px 8px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #A53375;
    font-size: 24px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -3px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 799px) {
    #wrapper {
        margin: 8px;
        border: none;
        font-size: 15px;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }
}