@keyframes custom-animation {
0% {
transform: none;
opacity: 1;
}
100% {
transform: translate(100px, 0px) rotate(180deg);
opacity: 1;
}
}
.animated-element {
animation: custom-animation 1s ease 0s 1 alternate both;
transform-origin: center center;
}