@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 3rem;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    text-decoration: underline;
    color: #0000EE;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.5em;
    line-height: 1.1em;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
}
h3 {
    font-size: 1.5em;
    line-height: 1.3em;
    text-decoration: underline;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
h1, h2, h3, p {
    text-align: center;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "-";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    display: flex;
    justify-content: space-between;
    margin: 0 -1rem 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%; }
}
.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: 15s;
  -webkit-animation-delay: 5s;
  -webkit-animation-iteration-count: infinite;
  animation: 15s slidy infinite; 
}
.slide {
    overflow: hidden;
    margin: 2rem -3rem;
}
footer {
    display: flex;
    justify-content: center;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 2rem;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    .hide_m {
        display: none;
    }
    .slide {
        margin: 2rem -2rem;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    header {
        margin: 0 0 1rem;
    }
    .slide {
        margin: 1rem -1rem;
    }
}