
      .nav-link{
        color: green;
      }  
      .nav-link:visited{
        color: rgb(108, 212, 38);
      }
      
      @media (max-width: 1200px) {
  .logo2 {
    display: none;
  }

  #menuToggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  #menuToggle span {
    display: block !important;
    width: 30px;
    height: 4px;
    margin-bottom: 6px;
    background-color: #000;
    transition: transform 0.3s, opacity 0.3s;
  }

  #menuToggle.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  #menuToggle.open span:nth-child(2) {
    opacity: 0;
  }

  #menuToggle.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  #menu { 
    display: none !important;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ededed;
    padding: 10px;
    width: 80%;
  }
  #menu ul{
    display: flex;
    flex-direction: column !important;
    width: 100%;
    text-align: center;
  }
#menu li{
    width: 100%;
}
#menu li:hover{
    background: #aaaaaa;
}
  #menu.show {
    display: flex !important;
   
  }
}
   