#nav-menu { 
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 5%;

    font-family: "Amplitude Wide";
    font-size: 1.5rem;

    font-weight: 400;


    pointer-events: all;
    margin-top: 20px;


    max-width: 800px;
    margin: 0 auto;
    background-color: #6e0b77;
    box-shadow: 3px 3px 1px #f7f1e3;
    border-radius: 10px;
    padding: 5px;
    margin-top: 20px;
    
}

#nav-menu a {
    z-index: 50;
    pointer-events:all;
    color:  #f7f1e3;

}

#nav-menu a:hover {
    color:  #ffffff;
    animation: glow 2s ease-out forwards;
}


.active {
    text-decoration: underline;
    animation: glow 2s ease-out forwards;
}




@keyframes glow {
  from {
    text-shadow: none;
  }
  to {
    text-shadow: 0 0 2px #70028b, 0 0 6px #70028b, 0 0 10px #70028b;
  }
}


@media (max-width: 768px) {
  #nav-menu a {
    text-decoration: none;
  }


}
