  /* Basic styling */
  body {
    margin: 0;
    font-family: Arial, sans-serif;
	background-color: #374151;	
  }

  nav {
    /*orig background-color: #1E90FF;*/	
	background-color: #374151;	
    padding: 10px 20px;
  }

  .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
	background-color: #374151;
  }

  .alink {
    color: white;
    text-decoration: none;
    margin: 5px 10px;
    font-weight: bold;
	background-color: #374151;	
  }

  .alink:hover {
    text-decoration: underline;
	background-color: #374151;	
  }

  /* Hide hamburger by default */
  .menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
	background-color: #374151;	
  }

  /* Responsive for mobile */
  @media (max-width: 768px) {
    .menu {
      display: none;
      flex-direction: column;
      text-align: center;
      width: 100%;
	  background-color: #374151;	
    }

    .menu.active {
      display: flex;
	  background-color: #374151;
    }

    .menu-toggle {
      display: block;
      text-align: right;
      width: 100%;
	  background-color: #374151;	
    }

    nav {
      text-align: right;
	  background-color: #374151;	
    }

    .alink {
      display: block;
      margin: 10px 0;
	  background-color: #374151;
    }
  }