header{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    -webkit-box-shadow: 0px 0px 9px 3px rgba(41,41,41,.25);
-moz-box-shadow: 0px 0px 9px 3px rgba(41,41,41,.25);
box-shadow: 0px 0px 9px 3px rgba(41,41,41,.25);
}

nav {
    display: flex;
    gap: 20px;
  
}

nav a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover{
    color: #8C00D4;
}

nav a.selected {
    text-decoration: underline;
    text-decoration-color: #8C00D4;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

header img{
    height: 50px;
    margin: 20px 0px;
}

@media (max-width: 480px){
    nav {
        display: none !important;
    }
    /* Show the hamburger menu icon */
    .menu-toggle {
        display: block;
        z-index: 999;
    }
}


/* Hamburger icon styling */
.hamburger {
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 5px 0; /* Add some spacing between each line */
  }
  
  /* Animation for the hamburger icon */
  .menu-toggle.active .hamburger:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #8C00D4;
  }
  
  .menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
    background-color: #8C00D4;
  }
  
  .menu-toggle.active .hamburger:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #8C00D4;
  }
  
  
  .gray-bg-nav-hamburguer{
    position: fixed;
      z-index: 100;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.95);
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .nav-links{
    display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
        gap: 20px;
        font-weight: 500;

        a{
            background-color: #8C00D4;
            border-radius: 8px;
            height: 40px;
            width: 260px;
            color: white;
            text-decoration: none;
            text-align: center;
            display: flex;
      justify-content: center;
      align-items: center;

            &.selected{
                background-color: white;
                color: #8C00D4;
              
            }


        }

        a:active{
            background-color: #420063;
            color: white;
        }


  }
  
  