@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3 Calibri, Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 635px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0 2rem;
}
p {
    padding-bottom: 1rem;
}
:is(h1, h2, article strong) {
    color: #0070C0;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 1.692em;
    line-height: 1.3;
}
h1 span {
    font-size: 0.8em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.underline {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li:before {
    content: "❖";
    font-size: 1.125rem;
    padding-right: 0.75rem;
    vertical-align: -1px;
    color: #FFCC00;
}
.logo {
    margin: 0 -2rem;
    padding: 1rem 2rem;
    background: #404040;
}
.logo img {
    display: block;
}
@-webkit-keyframes slidy {
    0% {
        left: 0%;
    }
    16.6% {
        left: 0%;
    }
    33.2% {
        left: -100%;
    }
    49.8% {
        left: -100%;
    }
    66.4% {
        left: -200%;
    }
    83% {
        left: -200%;
    }
    100% {
        left: -300%;
    }
}
@keyframes slidy {
    0% {
        left: 0%;
    }
    16.6% {
        left: 0%;
    }
    33.2% {
        left: -100%;
    }
    49.8% {
        left: -100%;
    }
    66.4% {
        left: -200%;
    }
    83% {
        left: -200%;
    }
    100% {
        left: -300%;
    }
}
.slide {
    overflow: hidden;
    margin: 0 -2rem 1.5rem;
}
.slide figure img {
    width: 25%;
    float: left;
}
.slide figure {
    position: relative;
    width: 400%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    -webkit-animation-name: slidy;
    -webkit-animation-duration: 30s;
    -webkit-animation-delay: 5s;
    -webkit-animation-iteration-count: infinite;
    animation: 30s slidy infinite;
}
article p:first-of-type strong:first-of-type {
    text-transform: uppercase;
}
@media only screen and (max-width:634px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0 1rem;
    }
    .slide {
        margin: 0 -1rem 1.5rem;
    }
    .logo {
        display: flex;
        justify-content: center;
    }
}