path {
    stroke: white;
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw 10s ease forwards;
}

path:nth-child(1) {
    animation-delay: 0s;
}

path:nth-child(2) {
    animation-delay: 0.1s;
}

path:nth-child(3) {
    animation-delay: 0.2s;
}

path:nth-child(4) {
    animation-delay: 0.3s;
}

path:nth-child(5) {
    animation-delay: 0.4s;
}

path:nth-child(6) {
    animation-delay: 0.5s;
}

path:nth-child(7) {
    animation-delay: 0.6s;
}

path:nth-child(8) {
    animation-delay: 0.7s;
}

path:nth-child(9) {
    animation-delay: 0.8s;
}

path:nth-child(10) {
    animation-delay: 0.9s;
}

path:nth-child(11) {
    animation-delay: 1s;
}

path:nth-child(12) {
    animation-delay: 1.1s;
}

@keyframes draw {
    from {
        stroke-dashoffset: 500;
    }

    to {
        stroke-dashoffset: 0;
    }
}