html, body {
  height: 100%;
}
body {
  margin: 0;
  background-size: 0.12em 100%;
  font: 16em/1 Arial;
}
.text--line,
.text--line2 {
  font-size: 0.5em;
}
svg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.text-copy {
  fill: none;
  stroke: white;
  stroke-dasharray: 7% 28%;
  stroke-width: 1px;
  animation: stroke-offset 4s linear;
}
.text-copy:nth-child(1) {
  stroke-dashoffset: 7%;
}
.text-copy:nth-child(2) {
  stroke-dashoffset: 14%;
}
.text-copy:nth-child(3) {
  stroke-dashoffset: 21%;
}
.text-copy:nth-child(4) {
  stroke-dashoffset: 28%;
}
.text-copy:nth-child(5) {
  stroke-dashoffset: 35%;
}
@keyframes stroke-offset {
  50% {
    stroke-dashoffset: 35%;
    stroke-dasharray: 0 87.5%;
  }
}
