From 13d46e0ee2457e90d3fd15fd4f945b6aa241fa39 Mon Sep 17 00:00:00 2001 From: Sneha P Pratap Date: Wed, 16 Oct 2024 11:03:46 +0530 Subject: [PATCH] Update contact.html --- contact.html | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/contact.html b/contact.html index c77e4b1f..fe2a4998 100644 --- a/contact.html +++ b/contact.html @@ -322,6 +322,10 @@ flex-direction: row; justify-content: space-evenly; margin-bottom: 5rem; + border-radius: 15px; + margin: 20px 0; + box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); + transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; } .hamburger { @@ -331,6 +335,9 @@ .hamburger i { color: white; font-size: 24px; + list-style: none; + padding: 0; + animation: changeText 10s infinite; } @media (max-width: 770px) { @@ -339,7 +346,7 @@ } .hamburger { color: white; - display: block; + display: block; } .container { @@ -349,7 +356,9 @@ .container.active { display: flex; flex-direction: column; - } + } + + }