svg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}


.st0 {
    stroke-dasharray: 400;
    stroke-dashoffset: 0;
    animation: draw-line 2s reverse;
}

.st1 {
    stroke-dasharray: 400;
    stroke-dashoffset: 0;
    animation: draw-line 2s reverse;
}

.st2 {
    stroke-dasharray: 400;
    stroke-dashoffset: 0;
    animation: draw-line 2s reverse;
}

@keyframes draw-line {
    from {
        stroke-dashoffset: -200;
    }
    to {
        stroke-dashoffset: 0;
    }
}