* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    position: relative;
}

#wrapper .header a {
    content: "";
    position: absolute;
    top: 36%;
    left: 9%;
    width: 20%;
    height: 26%;
    z-index: 6;
}

#wrapper .article {
    padding: 20px 30px;
}

#wrapper .footer {
    padding: 20px 30px;
    border-top: 3px solid #BE0C15;
    display: flex;
    gap: 20px;
    align-items: center;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 15px;
    font-size: 30px;
    font-weight: 700;
    color: #BE0C15;
    text-align: center;
}

#wrapper h1 span {
    font-weight: 400;
}

#wrapper h3 {
    margin: 0 0 0 -10px;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: 700;
    background: #BE0C15;
    color: #fff;
    border: 3px solid #FFD813;
    display: inline-block;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: -15px 0 14px;
    padding: 22px 12px 12px;
    list-style: none;
    background: #FFD813;
    border: 3px solid #BE0C15;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #000;
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .header a {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #wrapper .article {
        padding: 16px;
    }

    #wrapper .footer {
        padding: 16px;
    }
}

@media all and (max-width: 649px) {

    #wrapper .footer {
        display: block;
    }

    #wrapper .images {
        display: flex;
        justify-content: center;
        margin: 20px 0 0;
    }

    #wrapper h1 {
        font-size: 24px;
    }
}