body {
  background: #f3f5fc;
  font-size: large;
  font-family: Arial, Helvetica, sans-serif;
}

.titulo {
  margin-top: 20px;
  text-align: center;
  font-family: Arial Black;
  font-weight: bold;
  font-size: 50px;
  color: #0a3871;
  text-shadow: 0 1px 0 #ddd, 0 2px 0 #ccc, 0 3px 0 #bbb, 0 4px 0 #aaa,
    0 5px 0 #acacac, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2),
    0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2),
    0 20px 20px rgba(0, 0, 0, 0.15);
}

#img-logo-alura {
  margin-left: 50px;
}

.tablero-horcado {
  background: black;
  border: 3px solid #dddddd;
  margin: 0 auto;
  display: block;
}

#iniciar-juego {
  width: 250px;
  height: 75px;
}

#agregar-nueva-palabra {
  width: 200px;
  height: 60px;
}

.boton-azul {
  background: #0a3871;
  width: 250px;
  height: 50px;
  color: #e5e5e5;
  border-radius: 20px;
  border: 1px solid #0a3871;
  margin: 25px;
  transition: all 0.5s;
  font-size: larger;
  cursor: pointer;
}

.boton-azul:hover {
  background: #e5e5e5;
  color: #0a3871;
  border: 1px solid #0a3871;
  transform: scale(1.1);
}

.boton-blanco {
  background: #e5e5e5;
  width: 250px;
  height: 50px;
  color: #0a3871;
  border: 1px solid #0a3871;
  border-radius: 20px;
  margin: 25px;
  transition: all 0.5s;
  font-size: larger;
  cursor: pointer;
}

.boton-blanco:hover {
  background: #0a3871;
  color: #e5e5e5;
  transform: scale(1.1);
}

.botones-en-columna {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#palabra-secreta-a-agregar {
  background: #f3f5fc;
  border: none;
  width: 200px;
  height: 40px;
  font-size: larger;
  outline: none;
}

::placeholder {
  color: #0a3871;
  font-size: large;
}

#aclaracion-maximo-letras {
  position: relative;
  margin: 20px;
  right: 170px;
  top: 35px;
  color: #0a3871;
}

.botones-de-costado {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#mensajes-al-usuario {
  margin-top: 10px;
  padding: 20px;
  border-radius: 5px;
  color: #0a3871;
}

#modal {
  max-width: 400px;
  max-height: 300px;
  color: #0a3871;
  background: #e5e5e5;
  text-align: center;
  border-radius: 10px;
}

#modal::backdrop {
  background-color: rgba(0, 0, 0, 0.55);
}

#mensaje-de-modal {
  margin-top: 15px;
}

footer {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}

footer > label {
  margin-right: 35px;
  font-size: 25px;
}

a {
  text-decoration: none;
  font-family: Georgia, "Times New Roman";
  font-size: xx-large;
}

a:hover {
  border-bottom: 2px solid;
}

a:active {
  color: #0a3871;
}

.oculto {
  display: none;
}

.error {
  border: solid red 4px;
}
