.NavBar {

    display: flex;
    justify-content: center; 
    list-style-type: none;
    padding-left: 0; 
}

.NavBar a {
    display: table;
    padding: 3vh;
    text-decoration: none;
    font-family: "Inter", "DM Sans", Arial, sans-serif;
    color: #e69c1d;
  }
  
.NavBar ul {
    list-style-type: none;
    margin-top: 0.5vh;
    margin-left: 0.5vh;
    padding: 0px;
    display: flex;
    justify-content: center;
  }
  
.NavBar li:hover {
    background-color: #ebdbdb52;
    border-radius: 12px;
  }