* {
    box-sizing: border-box;
    padding: 0;
}


/* Estilos básicos */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li {
    display: inline;
  }
  
  .nav-links a {
    font-size: 20px;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
    filter: drop-shadow(1px 1px 1px black);
  }
  
  .nav-links a:hover {
    background-color: blueviolet;
  }

  .nav-links-t {
    list-style: none;
    display: flex;
    gap: 20px;
  }

  .nav-links-t a {
    color: #95A1AC;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .nav-links-t a:hover {
    background-color: blueviolet;
  }
  
  /* Ocultar los enlaces y mostrar el botón en pantallas pequeñas */
  .menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    margin-right: 15px;
    filter: drop-shadow(1px 1px 1px black);
  }
  
  /* Media query para pantallas menores de 768px */
  @media screen and (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #333;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  