Skip to content

Commit 3976840

Browse files
committed
smooth animation
1 parent cdb5291 commit 3976840

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

public/index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,22 @@
195195
line-height: 1.6;
196196
}
197197

198+
/* Fade-in animation */
199+
.hero {
200+
animation: fadeInUp 1s ease-out;
201+
}
202+
203+
@keyframes fadeInUp {
204+
from {
205+
opacity: 0;
206+
transform: translateY(30px);
207+
}
208+
to {
209+
opacity: 1;
210+
transform: translateY(0);
211+
}
212+
}
213+
198214
@media (max-width: 768px) {
199215
.container {
200216
padding: 2rem 1rem;

0 commit comments

Comments
 (0)