.lines-anim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 100%;
  display: flex;
  justify-content: space-between; /* Distribute lines evenly */
}

.line {
  position: relative;
  width: 1px;
  height: 100%;
  /*background: #ffffff;  /* Line color */
  overflow: hidden;
}

.line::after {
  content: '';
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  animation: drop 6s 0s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

/* Different colors for each line's pseudo-element */
.line:nth-child(1)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #126899  75%, #126899  100%);
  animation-delay: 0.5s;
}

.line:nth-child(2)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #aadfff 75%, #aadfff 100%);
  animation-delay: 1s;
}

.line:nth-child(3)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #126899  75%, #126899  100%);
  animation-delay: 1.5s;
}

.line:nth-child(4)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #aadfff 75%, #aadfff 100%);
  animation-delay: 2s;
}

.line:nth-child(5)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #126899  75%, #126899  100%);
  animation-delay: 2.5s;
}

.line:nth-child(6)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #aadfff 75%, #aadfff 100%);
  animation-delay: 3s;
}

.line:nth-child(7)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #126899  75%, #126899  100%);
  animation-delay: 3.5s;
}

.line:nth-child(8)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #aadfff 75%, #aadfff 100%);
  animation-delay: 4s;
}

.line:nth-child(9)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #126899  75%, #126899  100%);
  animation-delay: 4.5s;
}

.line:nth-child(10)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #aadfff 75%, #aadfff 100%);
  animation-delay: 5s;
}
.line:nth-child(11)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #126899  75%, #126899  100%);
  animation-delay: 0.5s;
}

.line:nth-child(12)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #aadfff 75%, #aadfff 100%);
  animation-delay: 1s;
}

.line:nth-child(13)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #126899  75%, #126899  100%);
  animation-delay: 1.5s;
}

.line:nth-child(14)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #aadfff 75%, #aadfff 100%);
  animation-delay: 2s;
}

.line:nth-child(15)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #126899  75%, #126899  100%);
  animation-delay: 2.5s;
}

.line:nth-child(16)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #aadfff 75%, #aadfff 100%);
  animation-delay: 3s;
}

.line:nth-child(17)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #126899  75%, #126899  100%);
  animation-delay: 3.5s;
}

.line:nth-child(18)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #aadfff 75%, #aadfff 100%);
  animation-delay: 4s;
}

.line:nth-child(19)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #126899  75%, #126899  100%);
  animation-delay: 4.5s;
}

.line:nth-child(20)::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #aadfff 75%, #aadfff 100%);
  animation-delay: 5s;
}

@keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}