* {
    box-sizing: border-box;
}

@font-face {
  font-family: DKCoolCrayon;
  src: url(DKCoolCrayon.ttf);
}
.crayon { 
  font-family: DKCoolCrayon;
  font-size:6em;
  font-weight: bold;
  color: whitesmoke;
  margin-top: 20px;
}

#pizarra {
  background-color: #003300;
  border: 20px solid goldenrod;
  border-radius: 10px;
  width: 65%;
  height: auto;
  padding: 0;
}

.message {
	 position: absolute;
	 right: 0.5vw;
	 bottom: 1vw;
	 max-width: 30vw;
	 font-size: 1.75vmin;
	 font-family: Verdana, sans-serif;
	 color: white;
} 

.invisible {
  display: none;
}

.visible {
  display: block;
}

button {
  display: inline-block;
  padding: 0.25em 0.5em;
  margin-right: 5%;
  font-size: 1.2em;
  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);
}

#msgBox {
  text-align: center;
  font-size: 1.5em;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  margin: 0.1em 0em; 
  color: rgb(255, 255, 153);
}

#smallMsg {
  text-align: center;
  padding: 0px 0px 10px 0px;
  font-size: 1em;
  color: white;
  font-family: 'Arial', sans-serif;

}

img {
  height: 15px;
  width: 15px;
  }

#guess {
  width: 50%;
  border: 3px solid #00FF00;
  padding: 2px 2px 2px 2px;
  margin: 30px auto;
  display: block;
  text-align: center;
  font-size: 1.2em;
  background: #FFFFCC;
  background-position: 10px 10px; 
  background-repeat: no-repeat;
}

#container {
  margin: auto;
}

.correct {
  background: #39e600;
}

.wrongplace {
  background: pink;
}

.default {
  background: whitesmoke;
}

.square {
  vertical-align:top;
  margin-top: 4px;
  border: 1px black solid;
  border-radius: 5px;
  display: inline-block;
  height: 1.2em;
  width: 1.2em;
  text-align: center;
  font-size: 3em;
  font-family: 'Lato', sans-serif;
}