.container {
  width: 50%;
  margin: 0 auto;
}
    
.star {
    fill: none;
    stroke: #e8dbcb;
    stroke-width: 1px;

/* Stroke-dasharray property */
    stroke-dasharray: 3530px;
    stroke-dashoffset: 3530px;
    animation: move 10s linear infinite;   
 animation-fill-mode: forwards; /*    */
}

.testo {
	fill: #e8dbcb;
}

@keyframes move {
    100% {
        stroke-dashoffset: 0;
    }
}