body {
  background-color: #ccc;
}

.line1, .line2, .line3, .line4 {
  stroke-dasharray: 2300;
  stroke-dashoffset: 2300;
  animation: dash 5s linear forwards;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
