* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: url(background.jpg);
    background-size: cover;
    background-attachment: fixed;
    font-family: "Lato", Arial, sans-serif;
    color: #222629;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
}

@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;
    }

    50% {
        opacity: 1;
    }

    75% {
        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 .hide {
    display: none;
}

#wrapper .center {
    text-align: center;
    color: #0E756E;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    position: relative;
}

#wrapper header a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#wrapper .color {
    color: #0E756E;
}

#wrapper article {
    padding: 30px 40px;
}

#wrapper p {
    margin-bottom: 16px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 20px -40px;
    font-size: 32px;
    font-weight: 700;
    background: #0E756E;
    color: #fff;
    padding: 20px 40px;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 7px;
    font-size: 17px;
    font-weight: 700;
    color: #0E756E;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #0E756E;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 20px 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 19px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 21px;
    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: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
    }

    #wrapper article {
        padding: 16px;
    }

    #wrapper p {
        text-align: left;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }

    #wrapper h1 {
        font-size: 26px;
    }
}