.loading-container {
    background: #05131c;
    height: 100vh;
    width: 100vw;
}
.container {
    overflow: hidden;
    position: relative;
    width: 30%;
    margin: 0 auto;
}
.cls-1 {
    fill: #009df6;
    stroke-width: 0px;
}
#svg {
    transform-origin: center;
    animation: anim_zoom 1.5s linear 0.2s;
}

@keyframes anim_zoom {
    0% {
        transform: scale(1, 1);
    }
    20% {
        transform: scale(0, 0);
    }
    100% {
        transform: scale(1, 1);
    }
}