diff --git a/assets/css/main.scss b/assets/css/main.scss
index 997bbfb..f613d36 100644
--- a/assets/css/main.scss
+++ b/assets/css/main.scss
@@ -154,6 +154,39 @@ a.btn {
}
}
+// CSS For 50th Info Banner
+#info-banner {
+ background-color: rgba(255, 0, 255, 0.8); /* Red background with 50% opacity */
+ color: #fff; /* White text for contrast */
+ text-align: center;
+ padding: 10px 20px;
+ width: 100%;
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
+}
+
+#info-banner p {
+ margin: 0;
+ display: inline-block;
+}
+
+#close-banner {
+ background: none;
+ border: none;
+ font-size: 16px;
+ cursor: pointer;
+ margin-left: 10px;
+ color: #fff; /* White close button for visibility */
+}
+
+#info-banner a {
+ color: white; /* Set the link color to blue */
+ text-decoration: underline; /* Optional: Add underline for better visibility */
+}
+
+#info-banner a:visited {
+ color: white; /* Ensure visited links also remain blue */
+}
+
@import "typography";
diff --git a/index.html b/index.html
index d284ac3..68603dd 100644
--- a/index.html
+++ b/index.html
@@ -3,6 +3,7 @@
active: home
---
+
+
+
+