.menu {
    position: sticky; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%;
    z-index: 100;
  }
  .logo { 
      width: 100px;
  }
  .nav-list ul{
      display: inline-block;
  }
  .nav-list {
      list-style-type: none;
      margin: 0;
      padding: 0;
      overflow: hidden;
      background-color: white;
  }
  
  .nav-list li a{
      display: block;
      color: #000;
      text-align: center;
      padding: 1rem 1rem;
      text-decoration: none;
      margin-top: 1rem;
  }
  
  .nav-list li a:hover {
      color: #027b44;
  }