/*HTML, BODY {
  height: 100%;
}*/

/*BODY {
  background: #082330;
  background-size: .12em 100%;
}*/

.text--line {
  font: 9em/1 Arial;
/*  font-size: .5em; */
}

svg {
/*  position: relative;*/
  width: 15%;
  height: 10%; 
}

.text-copy {
  fill: none;
  stroke: white;
  stroke-dasharray: 7% 10%;
  stroke-width: 4px;
  animation: stroke-offset 4s infinite linear;
}
.text-copy:nth-child(1) {
  stroke: #360745;
  stroke-dashoffset: 7%;
}
.text-copy:nth-child(2) {
  stroke: #D61C59;
  stroke-dashoffset: 14%;
}
.text-copy:nth-child(3) {
  stroke: #E7D84B;
  stroke-dashoffset: 21%;
}
.text-copy:nth-child(4) {
  stroke: #EFEAC5;
  stroke-dashoffset: 28%;
}
.text-copy:nth-child(5) {
  stroke: #1B8798;
  stroke-dashoffset: 35%;
}

@keyframes stroke-offset {
  50% {
    stroke-dashoffset: 35%;
    stroke-dasharray: 0 87.5%;
  }
}
