body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: #2b00ab;
    color: white;
    padding: 1rem;
    width: 100%;
    text-align: center;
}

.container {
    background-color: white;
    border: 1px solid #2b00ab;
    border-radius: 5px;
    padding: 2rem;
    margin: 2rem;
    width: 80%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

canvas {
    border: 1px solid #2b00ab;
    margin-bottom: 1rem;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

label, input, button {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
/* En el archivo styles.css, agrega esta clase */
.hidden {
    display: none;
}
#juego-boton {
    display: inline-block;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #2b00ab;
    color: #fff;
    border: 2px solid #000000;
    border-radius: 10px;
    cursor: pointer;
}
/* Estilos cuando se pasa el cursor sobre el botón */
#juego-boton:hover {
    background-color: #fff;
    color: #000000;
  }
  
  /* Estilos cuando se presiona el botón */
  #juego-boton:active {
    background-color: #ffe856;
    border-color: #000000;
  }

#restartButton {
    display: inline-block;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #2b00ab;
    color: #fff;
    border: 2px solid #000000;
    border-radius: 10px;
    cursor: pointer;
}
/* Estilos cuando se pasa el cursor sobre el botón */
#restartButton:hover {
    background-color: #fff;
    color: #000000;
  }
  
  /* Estilos cuando se presiona el botón */
#restartButton:active {
    background-color: #ffe856;
    border-color: #000000;
  }