* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  } 

  body {
    background-image: url('/img/Alvaro\ Villa.svg'); /* Ruta de la imagen */
    background-size: cover;        /* Ajusta la imagen al tamaño de la pantalla */
    background-repeat: no-repeat;  /* Evita que se repita */
    background-position: center;   /* Centra la imagen */
    background-attachment: fixed;  /* Hace que el fondo no se mueva al hacer scroll */
    font-family: Arial, sans-serif;
  }
  

  /* AppBar */
.appbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
   /* background-color: #0077cc;*/
    padding: 1rem 2rem;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-links {
    display: flex;
    gap: 1rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #ffeeaa;
  }
  
  /* Botón hamburguesa */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      /*background-color: #000000;*/
      position: absolute;
      top: 60px;
      right: 0;
      padding: 1rem;
      width: 200px;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }
