diff --git a/frontends/web/templates/index.html b/frontends/web/templates/index.html index 6a07f1f..1e85f65 100644 --- a/frontends/web/templates/index.html +++ b/frontends/web/templates/index.html @@ -9,32 +9,32 @@ flex-direction: column; align-items: center; padding: 1rem 1.5rem; - color: rgba(255, 255, 255, 0.85); text-decoration: none; - transition: all 0.2s ease; + transition: all 0.15s ease; } .home-icon i { - font-size: 3rem; + font-size: 3.5rem; + color: #fff; margin-bottom: 0.5rem; - filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); - transition: all 0.2s ease; + filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4)); + transition: all 0.15s ease; } .home-icon span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; + color: rgba(255, 255, 255, 0.5); opacity: 0; - transform: translateY(-5px); - transition: all 0.2s ease; + transform: translateY(-8px); + transition: all 0.15s ease; } .home-icon:hover i { - transform: scale(1.2); - filter: drop-shadow(0 0 12px currentColor); + transform: translateY(-4px); + filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.5)); } .home-icon:hover span { opacity: 1; transform: translateY(0); - color: var(--header-gold); } @@ -54,9 +54,9 @@