Add floating animation to hero image and update text styles

- Introduce keyframes for float animation in globals.css.
- Apply float animation to the hero image and update text to white.
This commit is contained in:
2025-04-06 19:01:31 +02:00
parent c9eb4e3c42
commit a5454882ed
2 changed files with 20 additions and 6 deletions

View File

@@ -34,5 +34,15 @@
--footer-bg: #242424; /* Deep grey footer to add visual depth */
}
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-6px);
}
}
.animate-float {
animation: float 3.5s ease-in-out infinite;
}