.steps > * {
  display: none;
}
.steps > * > h2 {
  color: #888;
  margin: 1em 0 0;
  font-size: 1.2em;
  font-weight: 400;
}
.steps > * > h1 {
  font-size: 2em;
  margin: 0;
}
.steps > * > h1.big {
  font-size: 3em;
}
.steps > * > h3 {
  margin-top: 0;
}
.steps > *.show {
  display: block;
  animation: slide-up 0.2s ease forwards;
}
.steps {
  text-align: center;
}

@keyframes slide-up {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/*# sourceMappingURL=steps.css.map */
