From 2027ab58540ced4af128cdc56445a02d4cf05585 Mon Sep 17 00:00:00 2001 From: sanskrutikarnuk13 Date: Tue, 24 Feb 2026 18:31:01 +0530 Subject: [PATCH] Fix hero section overlap and heading alignment issue --- index.html | 33 ++++++++++++++++++++++++--------- styles.css | 9 +++++---- 2 files changed, 29 insertions(+), 13 deletions(-) diff --git a/index.html b/index.html index 54942ba5..3d95a1d5 100644 --- a/index.html +++ b/index.html @@ -190,13 +190,9 @@ } .circle-container { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - pointer-events: none; - z-index: 9999; + position:fixed; + z-index:0; + pointer-events:none; } /* cookie-consent */ @@ -358,6 +354,25 @@ margin-bottom: 20px; } } + + .header__content{ + position:relative; + z-index:5; +} + +.header__image{ + z-index:1; +} + +@media(max-width:768px){ + +.header__content h1{ + font-size:1.6rem; + line-height:1.5; + text-align:center; +} + +}