:root {
    font-size: 16px;
}

* {
    margin: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

#wrapper {
    margin: 0.75rem auto;
    border: 1px #231f20 solid;
    max-width: 795px;
    color: rgba(0, 0, 0, 0.6);
    position: relative;
    padding: 0;
    background-color: #ffffff;
    font-family: "Source Sans Pro", sans-serif;
    line-height: 1.375rem;
    font-size: 1rem;
    text-align: left;
    overflow: hidden;
}

p {
    padding-bottom: 0.9375rem;
}

h1 {
    margin: 0 0 0.9375rem 0;
    font-size: 1.5rem;
    line-height: 1.75rem;
    text-align: center;
    color: #22aa86;
}

h1 span {
    display: block;
    font-size: 1rem;
    line-height: 1.25rem;
    margin: 0.3125rem 0 0;
}

h2 {
    font-size: 0.8125rem;
    line-height: 1.125rem;
    margin: 0;
}

:is(a:link,a:visited,a:active) { 
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
}

.clear:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}

header {
    width: 100%;
    float: left;
    border-top: 1.25rem solid #22aa86;
}

header a img {
    margin: 1.25rem;
}

.slider {
    overflow: hidden;
}

.slider figure {
    position: relative;
    width: 400%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 18s slidy infinite;
}

.slider img {
    width: 25%;
    float: left;
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    30% {
        left: 0%;
    }

    33% {
        left: -100%;
    }

    64% {
        left: -100%;
    }

    67% {
        left: -200%;
    }

    97% {
        left: -200%;
    }

    100% {
        left: -300%;
    }
}


article {
    width: 100%;
    float: left;
    padding: 1.25rem 5.9375rem 0.25rem;
    text-align: center;
}

footer {
    width: 100%;
    float: left;
    padding: 3.125rem 5.9375rem;
    background: #44514e url("../images/background.png") center center no-repeat;
    background-size: 53% auto;
    color: #fff;
    border-bottom: 1.25rem solid #303d3a;
}

footer img {
    vertical-align: middle;
    position: relative;
    top: -1px;
}

@media only screen and (max-width: 795px) {
    #wrapper {
        border: none;
        font-size: 0.875rem;
        line-height: 1.125rem;
    }
    h1 {
        font-size: 1.125rem;
        line-height: 1.375rem;
    }
    h1 span {
        font-size: 0.8125rem;
        line-height: 1.125rem;
    }
    header a img {
        margin: 1.25rem;
    }
    article {
        padding: 1.25rem 1.25rem 0.5rem;
    }
    footer {
        padding: 1.25rem 1.25rem 0;
    }
}