diff --git a/static/index.css b/static/index.css
index 51cfd6d6c0ec213387b31152981bb52ba84e2ddb..089b2c124623ea840478cffa23c614e2084757c0 100644
--- a/static/index.css
+++ b/static/index.css
@@ -130,7 +130,7 @@ tr:hover {
     font-size: 1.2rem;
 }
 #landingpage{
-    background: #598364;
+    background: #ee994d;
     top: 10%;
     position: fixed;
     position: -webkit-sticky;
@@ -142,11 +142,27 @@ tr:hover {
     text-decoration: none;
     color: white;
     font-size: 1rem;
-    line-height: 1.5
+    line-height: 1.5;
+    display:block;
+}
+#landingpage li .anchor::before{
+    content: '';
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 100%;
+    height: 100%;
+    transition: .2s ease-out;
+    border-right: 3px #0c4128 solid;
+    border-left: 3px #0c4128 solid;
+    transform: scaleX(1.2);
+    opacity: 0;
+}
+@media (any-hover: hover) {
+#landingpage li .anchor:hover::before{
+    transform: scale(1);
+    opacity: 1;
 }
-#landingpage li a.anchor.active::before{
-    border-right: 10px;
-    border: #2b7961;
 }
 
 .maincontent{
diff --git a/static/landingpage.css b/static/landingpage.css
index be7489cb2a1cb253f40dede336c0ec1bce528acb..521b7994409324c230b1e649c5d9848b0e2b9a1f 100644
--- a/static/landingpage.css
+++ b/static/landingpage.css
@@ -109,25 +109,4 @@ html{
 #navbar ul li .dot.active::after{
     transform: translateY(-50%) scale(1);
 }
-#landingpage li .anchor{
-    display: block;
-}
-#landingpage li .anchor::before{
-    content: '';
-    position: absolute;
-    top: 0;
-    left: 0;
-    width: 100%;
-    height: 100%;
-    transition: .2s ease-out;
-    border-right: 3px #0c4128 solid;
-    border-left: 3px #0c4128 solid;
-    transform: scaleX(1.2);
-    opacity: 0;
-}
-@media (any-hover: hover) {
-#landingpage li .anchor:hover::before{
-    transform: scale(1);
-    opacity: 1;
-}
-}
+