
 
  h3{text-align: center}
  
  h2{position:absolute; top: 50px;
  text-align: center;
  z-index: -1;}
  body{background-image: url('img/fondo.png');
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Saiyan, sans-serif;
  color: black;}
    
    
    @font-face {
    font-family: 'Saiyan';
    src: url('fonts/Saiyan-Sans.ttf') format('truetype');
  }
  
  
  .jugar { position: relative; 
    z-index: 0;  
    text-align: center;
  }
 
    .jugar a {
      display: inline-block;
      padding: 12px 24px;
      
      color: black;
      text-decoration: none;
      font-size: 30px;
      border-radius: 10px;
      font-family: 'Saiyan', sans-serif;
      transition: transform 0.2s ease-in-out;
    }
    
    .jugar a:hover {
      transform: scale(1.1);
    }

html, body {
  height: 100%; /* Asegura que el contenedor ocupe el 100% del viewport */
  overflow: hidden; /* Oculta las barras de desplazamiento y bloquea el scroll */
}

