* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  height: 100vh;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
}

svg {
  font-size: 150px;
  padding-top: 11%;
}

.copy {
  fill: none;
  stroke: #fff;
  stroke-width: 3px;
  stroke-dasharray: 8% 30%;
  stroke-dashoffset: 0%;
  animation: textanimation 6s linear infinite;
}

@keyframes textanimation {
  100% {
    stroke-dashoffset: -35%;
  }
}

.copy1 {
  stroke: #673ab7;
  animation-delay: -1s;
}
.copy2 {
  stroke: #e91e63;
  animation-delay: -2s;
}
.copy3 {
  stroke: #ff5722;
  animation-delay: -3s;
}
.copy4 {
  stroke: #f44336;
  animation-delay: -4s;
}
.copy5 {
  stroke: #663ab7;
  animation-delay: -5s;
}
