diff --git a/scss/_menue.scss b/scss/_menue.scss
index 89bd3898e687e5b469db71d8bc9c85a17be3c319..1532a9bcf1886b57cd8fe433effcfc22e23c6fff 100644
--- a/scss/_menue.scss
+++ b/scss/_menue.scss
@@ -27,16 +27,26 @@
     width: max-content;
     left: 50%;
     transform: translateX(-50%);
-    background-color: $back-color-3;
-    border-radius: 10px;
 
     a {
+        background-color: $back-color-3;
         border-bottom: $back-color-2 solid 2px;
         width: 100%;
         color: $text-color;
 
-        &:last-of-type{
+        &:first-of-type{
+            border-top-left-radius: 10px;
+            border-top-right-radius: 10px;
+        }
+
+        &:last-of-type {
             border-bottom: none;
+            border-bottom-left-radius: 10px;
+            border-bottom-right-radius: 10px;
+        }
+
+        &:hover{
+            background-color: $back-color-2;
         }
     }
 }