* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: url(background-red.png) repeat-y;
    background-size: contain;
    background-attachment: fixed;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 810px;
    margin: 16px auto;
    background: #F4F2EF;
    overflow: hidden;
    color: #000;
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    box-shadow: 0 1px 11px #0000006e;
    border-radius: 5px;
}

#wrapper .logo {
    padding: 20px 16px;
    display: flex;
    justify-content: center;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    11.11% {
        opacity: 1;
    }

    33.33% {
        opacity: 1;
    }

    44.44% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes opacity {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#wrapper .slideshow>img {
    animation: opacity 3s forwards;
}

#wrapper .slideshow {
    position: relative;
}

#wrapper .slideshow img {
    vertical-align: bottom;
}

#wrapper .slideshow>img:nth-of-type(1) {
    position: relative;
}

#wrapper .slide img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 9s linear 0s infinite normal forwards;
}

#wrapper .slide img:nth-child(2) {
    animation-delay: 3s;
}

#wrapper .slide img:nth-child(3) {
    animation-delay: 6s;
}

#wrapper .logo img {
    display: inline-block;
    vertical-align: bottom;
    width: 280px;
}

#wrapper .mb-0 {
    margin-bottom: 0;
}

#wrapper .article {
    margin-top: 20px;
    padding: 0 50px;
}

#wrapper .footer {
    padding: 25px 50px;
    background: #98918A;
    color: #fff;
}

#wrapper p {
    margin-bottom: 15px;
    text-align: justify;
}

#wrapper p.center {
    text-align: center;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 700;
    color: #cd2d19;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #cd2d19;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

#wrapper ul {
    margin-bottom: 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #cd2d19;
    font-size: 31px;
    position: absolute;
    top: -7px;
    left: 0;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    height: auto;
}

#wrapper .nobr {
    white-space: nowrap;
}

@media (max-width: 809px) {
    #wrapper {
        font-size: 14px;
        margin: 8px;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper p {
        text-align: left;
    }

    #wrapper h1 {
        font-size: 26px;
    }

    #wrapper .article {
        padding: 0 16px;
    }

    #wrapper .footer {
        padding: 16px;
    }
}