/* Navigation menu */
.navbar {
    background: #120077; /* Azul oscuro */
    color: white;
    position: fixed; /* Se mantiene fija en la parte superior */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 70px; /* Ajustamos la altura */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .navbar li {
    display: flex;
    align-items: center;
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    
    padding: 1.2em 2em;
    display: inline-block;
  }
  
  .navbar a:hover {
    background: #575757;
    border-radius: 0.5em;
  }
  .navbar ul li a:hover {
    color: #6fff01;
    }

  /* Media queries para dispositivos móviles */
@media (max-width: 900px) {
    .navbar {
        height: 60px;
    }
  
    .navbar a {
      font-size: 1rem; /* Reduce el tamaño del texto */
      padding: 0.5em 1em; /* Reduce el padding */
    }
  }
  
  @media (max-width: 600px) {
    .navbar {
        height: 50px;
    }
  
    .navbar a {
      font-size: 0.7rem; /* Aún más pequeño en pantallas menores */
      padding: 0.5em 0.5em; /* Reduce más el espacio lateral */
    }
  

  }