demo-container { display: block; border: 2px solid rgb(189, 189, 189); margin: 0px; padding: 25px 10px 10px; width: fit-content; border-radius: 4px; }
demo-object { display: block;  background-color: rgb(199, 255, 251); align-content: center; text-align: center; border-style: solid; border-width: 6px;
width: 50px;
height: 50px;
background-color: blue;
animation: move 3s linear infinite;



}

.element { offset: path("M 20 60 L 120 60 L 70 10 L 20 60");}



@keyframes move {
from {
offset-distance: 0%;
}

to {
offset-distance: 100%;
}
}


