diff --git a/index.html b/index.html
index a2bde05..a2c88fb 100644
--- a/index.html
+++ b/index.html
@@ -351,6 +351,42 @@
padding: 20px;
/* Optional: add padding for better spacing */
}
+
+ .menu {
+ /* Light red background */
+ padding: 10px;
+ border-radius: 5px;
+ }
+ .menu_links {
+ color: #b30000; /* Dark red text */
+ text-decoration: none;
+ padding: 10px 15px;
+ display: inline-block;
+ transition: background-color 0.5s, color 0.3s;
+ border-radius: none;
+ }
+ .menu_links:hover {
+ background-color: #ff6666b1; /* Medium red background on hover */
+ color: #fff; /* White text on hover */
+ border-radius: 0px;
+ }
+ .scroll-button {
+ background: none;
+ border: none;
+ cursor: pointer;
+ transition: transform 0.3s;
+ }
+ .scroll-button:hover {
+ transform: scale(1.2);
+ }
+ .scroll-button svg {
+ fill: #b30000; /* Dark red icon */
+ transition: fill 0.3s;
+ }
+ .scroll-button:hover svg {
+ fill: #ff6666; /* Medium red icon on hover */
+ }
+
@@ -385,7 +421,7 @@
diff --git a/src/css/indexmain.css b/src/css/indexmain.css
index 080bc84..36d05d5 100644
--- a/src/css/indexmain.css
+++ b/src/css/indexmain.css
@@ -157,4 +157,5 @@ footer {
font-size: 1.2rem;
color: #1d4ed8;
margin-top: 20px;
-}
\ No newline at end of file
+}
+