@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.card {
animation: fadeIn 0.4s ease-out;
}@keyframes
Defines the stages of a multi-step CSS animation, then applied to an element with the animation property.