Document
.box{
height:200px;
width:200px;
background-color:green;
position: relative;
left:45%;
animation: anim 5s infinite;
}
@keyframes anim {
50%{
border-radius:50%;
background-color:red;
}
}