@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: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 300px, rgba(239, 239, 239, 1) 800px) fixed, 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: #22bbea;
}
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%; }
    18% { left: 0%; }
    36% { left: -100%; }
    54% { left: -100%; }
    62% { left: -200%; }
    85% { left: -200%; }
    100% { left: -300%; }
    }
    
    @keyframes slidy {
    0% { left: 0%; }
    18% { left: 0%; }
    36% { left: -100%; }
    54% { left: -100%; }
    62% { left: -200%; }
    85% { left: -200%; }
    100% { left: -300%; }
    }
    header section { overflow: hidden; }
    header section figure img { width: 25%; float: left; }
    header section 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; 
    }
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;
    }
}