diff --git a/app/(root)/globals.css b/app/(root)/globals.css index aeaddc5..6771639 100644 --- a/app/(root)/globals.css +++ b/app/(root)/globals.css @@ -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; +} diff --git a/components/Home/Hero/Hero.tsx b/components/Home/Hero/Hero.tsx index f2e130f..ef4c641 100644 --- a/components/Home/Hero/Hero.tsx +++ b/components/Home/Hero/Hero.tsx @@ -6,7 +6,7 @@ const Hero = () => { className="relative w-full pt-[4vh] md:pt-[12vh] h-screen flex flex-col overflow-hidden" style={{ backgroundColor: "var(--primary-bg)", - color: "var(--primary-text)", + color: "white", }} > {/* Background Image with Blur */} @@ -30,20 +30,24 @@ const Hero = () => {

Rhein Software Development

-

+

Wir entwickeln performante und zukunftssichere Software für deine Vision.

- {/* Image Content */} + {/* Floating Image Content */}
hero graphic