.svg {
    width: 250pt;
    height: 50pt;
}

.svg path {
    stroke: white;
    stroke-width: 1pt;
    stroke-linecap: round;
    stroke-dasharray: var(--l);
    stroke-dashoffset: var(--l);
    fill: none;
    fill-rule: nonzero;
    animation: stroke 25s forwards;
    -webkit-animation: stroke 25s forwards;
}

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