diff --git a/public/css/style.css b/public/css/style.css index 768675c1..1b0a8e82 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -361,6 +361,12 @@ a{ color: white; font-weight: 700; text-transform: uppercase; + transition: text-shadow 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition */ +} + +.about h1:hover { + text-shadow: 0 0 10px white, 0 0 20px white; + transform: scale(1.05); } /* --------------- Dashboard CSS --------------- */ @@ -1725,8 +1731,13 @@ form { .about .about-us-logo { width: 400px; + transition: transform 0.3s ease-in-out; } +.about-image:hover .about-us-logo { + transform: scale(1.1); /* Increase size to 110% */ + } + .about-content .about-image { overflow: visible; width: 600px;