diff --git a/css/style.css b/css/style.css index 6c97c0a..9344553 100644 --- a/css/style.css +++ b/css/style.css @@ -1,17 +1,28 @@ #particles-js { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: -1; /* Ensures the particles are positioned behind other elements */ - background: linear-gradient(to right, #076585, #95e4d8); - background-size: cover; - background-position: 50% 50%; - } - - #main { - position: relative; /* Ensure content remains in front of particles */ - z-index: 1; /* Ensure the content stays above the particles */ - } - \ No newline at end of file + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 0; + /* Ensures the particles are positioned behind other elements */ + background: linear-gradient(to right, #076585, #95e4d8); + background-size: cover; + background-position: 50% 50%; +} + +#main { + position: relative; + /* Ensure content remains in front of particles */ + z-index: 1; + /* Ensure the content stays above the particles */ +} + +/* style.css */ +.curved-container { + border-radius: 20px; + /* Adjust the radius as needed */ + padding: 20px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + /* Optional: Add a subtle box shadow */ +} \ No newline at end of file diff --git a/home.html b/home.html index 7edb4b2..c5e63a6 100644 --- a/home.html +++ b/home.html @@ -11,19 +11,19 @@