body {
  margin-top: 8vw;
}

   #pizarra {
    background-color: #003300;
    border: 20px solid goldenrod;
    border-radius: 10px;
    width: 84%;
    height: 80%;
    padding: 8px;
}

.gaia {
  margin: 0;
  position: absolute;
  top: 6.5vw;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: pre;
  color: white;
  text-transform: uppercase;
  padding: 0.25em 0.5em;
  font-size: 1.5em;
  background-color: Maroon;
  border: 2px solid whitesmoke;
  border-radius: 0.25em;
}

.message {
	 position: absolute;
	 right: 0.5vw;
	 bottom: 0;
	 max-width: 40vw;
	 font-size: 3.75vmin;
	 font-family: Verdana, sans-serif;
	 color: white;
} 

.ojos {
    width: 15%;
    height: 15%;
	border: 0;
}

 
.centerimg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 40%;
}

main {
  max-width: 100%;
  margin: auto;
}

h1 {
  text-align: center;
  color: rgb(255, 255, 153);
}

.win {
  color: white;
  background-color: #3e8e41;
}

.loss {
  color: white;
  background-color: Crimson;
}

/* Lo de las letras de debajo del ahorcado */
#word {
  letter-spacing: 8px;
  text-align: center;
  font-size: 1.5em;
  color: rgb(255, 255, 153);
  font-weight: bold;
  font-family: Arial, monospace
}

/* Lo de las letras */
   #guesses {
    text-align: center;
    font-size: 1.5em;
    color: rgb(255, 255, 153);
    font-weight: bold;
    font-family: Arial, monospace
  }

/* Lo del borde de las letras */
  .guess {
    padding: 0.15em;
    display: inline-block;
    border: 2px solid rgb(255, 255, 153);
    border-radius: 2px;
    margin: 0.17em;
    cursor: pointer;
  }
  
  img {
    width: 50%;
    height: 50%;
	margin-top: 5%;
	margin-bottom: 5%;
  }

#guessBox {
    height: 30px;
    border-radius: 0.25em;
    padding-top: 2px;
    font-size: 18pt;
	font-weight: bold;
	text-align: center;
    width: 180px;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.25em 0.5em;
  margin-left: 5%;
  font-size: 1.5em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: whitesmoke;
  background-color: dodgerblue;
  border: 2px solid whitesmoke;
  border-radius: 0.25em;
  box-shadow: 0 5px #666;
}

.button:hover {background-color: blue}

.button:active {
  background-color: red;
/*   box-shadow: 0 4px darkred; */
  box-shadow: 0 0;
  transform: translateY(4px);
}