.item {
  /* font-size: 30px; */
  transform: translate(-100%, 0px);
  opacity: 0;
  animation: item-slide 1s forwards; }

@keyframes item-slide {
  100% {
    opacity: 1;
    transform: translate(0px, 0px); } }
.item:not(:last-child) {
  margin-bottom: 1px; }

.item:nth-child(1) {
  animation-delay: 0s; }

.item:nth-child(2) {
  animation-delay: 0.2s; }

.item:nth-child(3) {
  animation-delay: 0.4s; }

.item:nth-child(4) {
  animation-delay: 0.6s; }

.item:nth-child(5) {
  animation-delay: 0.8s; }

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