body {
    text-align: center;
    margin-top: 50px;
    background-image: url(../media/fondoArcade.gif );
    background-size: cover;
  }
  
  input {
    padding: 8px;
    margin: 10px;
  }
  
  button {
    padding: 10px;
    margin: 10px;
    cursor: pointer;
  }

  h1{
    font-family: "Press Start 2P", system-ui;
    font-weight: bold;
    font-style: normal;
    font-size: 50px;
    margin-top: 100px;
    color: white;
  }

  #mensaje{
    font-family: "Press Start 2P", system-ui;
    font-weight: bold;
    font-style: normal;
    font-size: medium;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  #datos{
    border: 4px solid #c49cd7;
    background-color: darkorchid;
    color: white;
    font-weight: bold;
    max-width: 500px;
    margin: 0 auto;
   
  }

  #datos-container{
    padding-right: 420px;
    text-align: center;
  }

  /*#resultados-container {
    text-align: center;
    padding-right: 420px;
    margin-top: 20px;
  }
  
  #resultados {
    border: 4px solid #ccc;
    padding: 20px;
    background-color: #c49cd7;
    max-width: 400px;  Ancho máximo del recuadro 
    margin: 0 auto; Centrar el contenedor horizontalmente 
    font-family: 'Courier New', Courier, monospace;
  }
  
  #tituloResultados {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }*/

  label{
    font-family: 'Courier New', Courier, monospace;
    margin-top: 50px;
  }

  h1{
    margin-bottom: 70px;
    margin-top: 120px;
    padding-right: 350px ;
  }

  a{
    text-decoration: none;
  }

  #ingresar {
    padding: 10px 20px; /* Ajusta el padding según tus preferencias */
    font-size: 16px; /* Tamaño de la fuente */
    background-color: #c49cd7; /* Color de fondo del botón */
    color: white; /* Color del texto */
    border: none; /* Quita el borde del botón */
    border-radius: 5px; /* Borde redondeado */
    cursor: pointer; /* Cambia el cursor al pasar sobre el botón */
    font-weight: bold;
  }
  
  #ingresar:hover {
    background-color: white; /* Cambia el color de fondo al pasar el cursor sobre el botón */
    color: darkorchid;
  }

  .mensaje-animado {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    text-align: center;
    opacity: 0;
    animation: aparecer 0.5s ease-in-out forwards;
  }
  
  .desaparecer {
    animation: desaparecer 0.5s ease-in-out forwards;
  }
  
  @keyframes aparecer {
    0% {
      opacity: 0;
      transform: translate(-50%, -70%);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
  
  @keyframes desaparecer {
    0% {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
    100% {
      opacity: 0;
      transform: translate(-50%, -30%);
    }
  }
  
  
  