@keyframes appear { from { transform: translateY(100%); } to { transform: translateY(0%); } } body{ animation: appear 0.5s ease-in; }