* {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
}
section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #00092c;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
section .row {
  position: relative;
  top: -50%;
  width: 100%;
  display: flex;
  padding: 10px 0;
  white-space: nowrap;
  font-size: 64px;
  transform: rotate(-30deg);
}
i {
  color: rgba(0, 0, 0, 0.5);
  transition: 1s;
  padding: 0.5px;
  user-select: none;
  cursor: default;
}
i:hover {
  color: #ff5f00;
  transition: 0s;
  text-shadow: 0 0 120px #ff5f00;
  /* ,
  0 0 60px #00f,
  0 0 30px #00f,
  0 0 15px #00f; */
}
section .row div {
  font-size: 1em;
  white-space: nowrap;
  animation: animate1 80s linear infinite;
  animation-delay: -80s;
}
section .row div:nth-child(2) {
  animation: animate2 80s linear infinite;
  animation-delay: -40s;
}
@keyframes animate1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes animate2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
section .row:nth-child(even) div {
  font-size: 1em;
  white-space: nowrap;
  animation: animate3 80s linear infinite;
  animation-delay: -80s;
}
section .row:nth-child(even) div:nth-child(2) {
  animation: animate4 80s linear infinite;
  animation-delay: -40s;
}
@keyframes animate3 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes animate4 {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0%);
  }
}