body {
font-family: Arial
sans-serif;
background-color: #f8f8f8;
}
.container {
text-align: center;
margin-top: 50px;
}
.animation {
width: 200px;
height: 200px;
background-color: #00bcd4;
margin: 0 auto;
position: relative;
animation: move 2s infinite;
}
@keyframes move {
0% {
transform: translateX(0);
}
50% {
transform: translateX(200px);
}
* {
transform: translateX(0);
}
}