:root {
    font-size: 1rem;
}

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

body {
    font-size: 0.875rem;
    line-height: 1.125rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
}

#wrapper {
    position: relative;
    max-width: 804px;
    margin: 1rem auto;
    border: 2px solid #000;
    overflow: hidden;
    background: #fff;
}

.logo {
    padding: 1.875rem;
    display: flex;
    justify-content: center;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    6.6% {
        opacity: 1;
    }

    33.3% {
        opacity: 1;
    }

    39.9% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

:is(.slide, .slide img:nth-of-type(1)) {
    position: relative;
}

.slide img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 15s linear 0s infinite normal forwards;
    vertical-align: bottom;
}

.slide img:nth-child(2) {
    animation-delay: 5s;
}

.slide img:nth-child(3) {
    animation-delay: 10s;
}

article {
    padding: 1.875rem 3.75rem 0;
}

footer {
    padding: 0 3.75rem 3.75rem;
}

footer strong {
    color: #96c31e;
}

.button a {
    background-color: #96c31e;
    margin: 0 0 20px;
    padding: 10px 50px;
    border-radius: 5px;
    color: #fff !important;
    font-weight: 700;
    display: inline-block;
    text-align: center;
}

.button a:hover {
    opacity: 0.9;
}

h1 {
    font-size: 1.917rem;
    color: #96c31e;
    margin: 1.25rem 0 1.875rem;
    line-height: 2.4375rem;
    text-align: center;
}

h2 {
    font-size: 1rem;
    margin: 0 0 1rem;
    line-height: 1.25rem;
}

p {
    margin: 0 0 1rem;
}

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

img {
    width: 100%;
    vertical-align: middle;
}

ul {
    margin: 0 0 1.0625rem;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
    position: relative;
}

ul li:before {
    content: "";
    background: #C8C8C8;
    display: block;
    width: 8px;
    height: 12px;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    position: absolute;
    left: 0;
    top: 3px;
}

.word {
    white-space: nowrap;
}

@media all and (max-width:803px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    :is(h1, h3, p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }
}

@media all and (max-width:767px) {
    article {
        padding: 0.625rem 1rem 0;
    }

    .logo {
        padding: 1.875rem 1rem;
    }

    footer {
        padding: 0 1rem 0.625rem;
    }

    h1 {
        font-size: 1.625rem;
        line-height: 1.875rem;
        margin: 1rem 0;
    }
}