@keyframes drawLine {
  from {
    stroke-dashoffset: 100%;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.linepath {
  stroke-dasharray: 100%;
  stroke-dashoffset: 100%;
  animation: drawLine 2s forwards;
}

