
.navBar {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #d79121;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  
  .navBar li {
    margin: 0;
  }
  
  .navBar a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .navBar a:hover {
    background-color: #e1a707;
  }