header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #ff6a00;
  height: 50px;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  font-size: 170%;
  line-height: 1;
  color: White;
  font-weight: lighter;
  margin-right: 5%;
}

h2 {
  text-align: center;
  color: #08416c;
  line-height: 0.5;
  font-weight: lighter;
}

p {
  text-align: center;
  font-weight: 500;
  line-height: 1;
  color: #636969;
}

.texto {
  font-size: 50%;
  line-height: 100px;
  color: Black;
  font-weight: lighter;
}

.logo {
  margin-left: 10%;
  margin-right: 5%;
}
body {
  font-family: "Patua One", sans-serif;
  line-height: 120%;
  margin: 0;
}

/* Estilos para la tabla de la matriz */
table {
  border: 3px solid grey;
  border-collapse: collapse;
  margin: auto;
  margin-top: 20px;
}

#numeroSeleccionado {
  font-size: 120%;
  line-height: 0.8;
  color: #636969;
}

td {
  width: 80px;
  height: 80px;
  text-align: center;
  font-size: 30px;
  color: #636969;
  vertical-align: middle;
  border: 2px solid grey;
  cursor: pointer;
  background-color: #84716b;
}

/* Estilos para el formulario de registro */
#formulario {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

#formulario label {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2px;
  font-weight: lighter;
}



#formulario input[type="submit"] {
  padding: 5px 10px;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.desactivada {
  background-color: #fff688;
}


