body {
  /* font-family: 'Fredoka', sans-serif; */
  background-color: #f0f8ff;
  /* display: flex;
  justify-content: center; */
  /* align-items: center; */
  height: 100vh;
  margin: 0;
}

.contenedor {
  text-align: center;
  background: #ffffffcc;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px #ccc;
}

.palabra {
  font-size: 4rem;
  color: #333;
  margin: 40px 0;
}

button {
  font-size: 1.5rem;
  padding: 10px 20px;
  border: none;
  background-color: #5e9eff;
  color: white;
  border-radius: 10px;
  cursor: pointer;
}

.botones {
  display: flex;
  justify-content: center;
  gap: 15px;
}

button {
  font-size: 1.2rem;
  padding: 10px 16px;
  border: none;
  background-color: #5e9eff;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
}

button:hover {
  background-color: #437ddc;
}

.estado {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #dc3545;
  margin-bottom: 10px;
}

.oculto {
  display: none;
}

.barra-progreso {
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px 0;
}

.progreso {
  height: 100%;
  width: 0%;
  background-color: #4caf50;
  transition: width 0.1s linear;
}