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

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Source Sans 3", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    border: 4px solid #9A1920;
    background-color: #fff;
    overflow: hidden;
}

#wrapper .hide {
    display: none;
}

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

#wrapper header {
    position: relative;
}

#wrapper header a {
    position: absolute;
    top: 8%;
    left: 3%;
    width: 24%;
    height: 20%;
    z-index: 1;
}

#wrapper article {
    padding: 20px;
}

#wrapper footer {
    padding: 10px 20px;
    background: #9A1920;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#wrapper footer p {
    color: #fff;
    margin-bottom: 0;
    font-size: 20px;
}

#wrapper footer p a {
    color: #fff !important;
}

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 16px 0;
    font-size: 27px;
    font-weight: 600;
    background: #9A1920;
    padding: 10px 129px;
    text-align: center;
    color: #fff;
}

#wrapper .background {
    margin-bottom: 0;
    background: #9A1920;
    padding: 10px 16px;
    text-align: center;
    color: #fff;
}

#wrapper .background a {
    color: #fff !important;
}

#wrapper h1 .block {
    font-size: 18px;
    display: block;
}

#wrapper h3 {
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: 700;
}

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

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

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

#wrapper ul li:before {
    content: '\2022';
    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 (max-width: 799px) {
    #wrapper {
        margin: 0;
        border: none;
    }

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

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

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

    #wrapper header a {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 499px) {
    #wrapper footer {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    #wrapper footer p {
        text-align: center;
        font-size: 17px;
    }
}