.animation{
width: 400px;
height: 600px;
display: flex;
}
.blok1{
width: 14px;
height: 14px;
background-color: white;
margin: 2;
animation: emblem 2s linear infinite
}
.blok1:nth-child(2n){
animation: emblem 2s linear infinite 0.2s;
}
@keyframes emblem{
0%{
scale: 0.5;
}
50%{
scale: 0.8;
background-color: gray;
}
100%{
scale: 0.5;
}
}