@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #3a434f;
    font: 0.875em/1.5em Tahoma, Arial, sans-serif;
    background: url('../images/bg.jpg') no-repeat top center fixed;
}
#wrapper {
    position: relative;
    max-width: 768px;
    margin: 1rem auto;
    border: 0;
    overflow: hidden;
}
p {
    padding-bottom: 0.625rem;
}
h1 {
    margin: 0;
    font-size: 1em;
    line-height: 1.3;
}
h2 {
    font-size: 1.28em;
    line-height: 1.5em;
    margin-bottom: 1.25rem;
}

:is(a:link,a:visited,a:active){
    color: inherit;
    text-decoration: none;
}
h2, .color, a.color {
    color: #E5005A;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
ul li:before {
    content: "\2022";
    font-size: 1.2em;
    float: left;
    margin: -1px 0 0 -1.1rem;
}
@-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%; }
}
.slides { overflow: hidden; }
.slides figure img { width: 25%; float: left; }
.slides figure { 
  position: relative;
  width:400%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 15s;
  -webkit-animation-delay: 5s;
  -webkit-animation-iteration-count: infinite;
  animation: 15s slidy infinite; 
}
header, footer, article section {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px dashed #000000;
    box-shadow: 0px 0px 20px -12px rgba(0, 0, 0, 1);
}
article section, footer {
    padding: 2rem;
}
footer p:last-of-type {
    padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header, footer, article section {
        border: 0;
    }
}
@media only screen and (max-width: 480px) {
    footer, article section {
        padding: 1rem;
    }
}