* {
  box-sizing: border-box;
}

div {
  width: 160px;
  height: 600px;
  overflow: hidden;
  position: relative;
  margin: 40px auto 0 auto;
}
div div {
  margin: 0;
}
div img {
  -webkit-animation: fadeIn 1.5s ease-in 0s 1 forwards;
          animation: fadeIn 1.5s ease-in 0s 1 forwards;
}
div span {
  display: block;
  text-align: center;
  width: 160px;
  height: 100px;
  position: absolute;
  bottom: 5px;
  left: 0;
  z-index: 30;
}
div article {
  position: absolute;
  z-index: 5;
  top: 180px;
  left: 0;
  display: block;
  text-align: center;
  width: 160px;
  -webkit-animation: fadeInOut 3s ease-in-out 1s 1 both;
          animation: fadeInOut 3s ease-in-out 1s 1 both;
}
div footer {
  position: absolute;
  z-index: 10;
  bottom: -3px;
  left: 0;
  display: block;
  text-align: center;
  width: 160px;
  -webkit-animation: moveUp 1s ease 3s 1 both;
          animation: moveUp 1s ease 3s 1 both;
}
div article + div {
  position: absolute;
  top: 440px;
  left: 0;
  display: block;
  text-align: center;
  width: 160px;
  z-index: 15;
  -webkit-animation: leftIn 3s ease 4.5s 1 both;
          animation: leftIn 3s ease 4.5s 1 both;
}
div main {
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  text-align: center;
  width: 160px;
  z-index: 15;
  -webkit-animation: mainIn 3s ease 4.5s 1 both;
          animation: mainIn 3s ease 4.5s 1 both;
}

div > span + div + div {
  z-index: 4;
  width: 160px;
  position: absolute;
  top: 0;
}
div > span + div + div article {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  display: block;
  text-align: center;
  width: 160px;
  -webkit-animation: signIn 1s ease 8s 1 both;
          animation: signIn 1s ease 8s 1 both;
}

div > span + div + div + div {
  position: absolute;
  z-index: 30;
  top: 450px;
  left: 0;
  display: block;
  text-align: center;
  width: 160px;
  height: 20px;
  -webkit-animation: textIn 1s ease 8s 1 both;
          animation: textIn 1s ease 8s 1 both;
}

@-webkit-keyframes signIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes signIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes textIn {
  0% {
    opacity: 0;
    margin-top: -100px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
@keyframes textIn {
  0% {
    opacity: 0;
    margin-top: -100px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
@-webkit-keyframes mainIn {
  0% {
    opacity: 0;
    margin-top: -100px;
  }
  10% {
    opacity: 1;
    margin-top: 0;
  }
  90% {
    opacity: 1;
    margin-top: 0;
  }
  100% {
    opacity: 0;
    margin-top: 100px;
  }
}
@keyframes mainIn {
  0% {
    opacity: 0;
    margin-top: -100px;
  }
  10% {
    opacity: 1;
    margin-top: 0;
  }
  90% {
    opacity: 1;
    margin-top: 0;
  }
  100% {
    opacity: 0;
    margin-top: 100px;
  }
}
@-webkit-keyframes leftIn {
  0% {
    opacity: 0;
    margin-left: -160px;
  }
  10% {
    opacity: 1;
    margin-left: 0;
  }
  90% {
    opacity: 1;
    margin-left: 0;
  }
  100% {
    opacity: 0;
    margin-left: 160px;
  }
}
@keyframes leftIn {
  0% {
    opacity: 0;
    margin-left: -160px;
  }
  10% {
    opacity: 1;
    margin-left: 0;
  }
  90% {
    opacity: 1;
    margin-left: 0;
  }
  100% {
    opacity: 0;
    margin-left: 160px;
  }
}
@-webkit-keyframes moveUp {
  0% {
    margin-bottom: -192px;
  }
  100% {
    margin-bottom: -3px;
  }
}
@keyframes moveUp {
  0% {
    margin-bottom: -192px;
  }
  100% {
    margin-bottom: -3px;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInOut {
  0% {
    margin-top: -50px;
    opacity: 0;
  }
  10% {
    margin-top: 0px;
    opacity: 1;
  }
  90% {
    margin-top: 0px;
    opacity: 1;
  }
  100% {
    margin-top: 50px;
    opacity: 0;
  }
}
@keyframes fadeInOut {
  0% {
    margin-top: -50px;
    opacity: 0;
  }
  10% {
    margin-top: 0px;
    opacity: 1;
  }
  90% {
    margin-top: 0px;
    opacity: 1;
  }
  100% {
    margin-top: 50px;
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */