@keyframes draw {
    from {
        stroke-dasharray: 0, 1000;
    }

    to {
        stroke-dasharray: 1000, 1000;
    }
}

path {
    fill: none;
    animation: draw 5s ease-in-out infinite;
}

path:nth-child(odd) {
    stroke: #1e3d8d;
    stroke-width: 2;
}

path:nth-child(even) {
    stroke: #64c5ea;
    stroke-width: 1;
}

.svg {
    width: 100%;
    max-width: 100%;
    height: 80%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* margin: auto; */
    margin-top: 2rem;
    z-index: 0;
    /* 99999; */
}

/* @media screen and(max-width:524px) {
    .svg {
        width: 50%;
        height: 60%;
    }
} */
