body {
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  background-color: #bcd1dc;
}

header {
  display: flex;
  flex-direction: row;
  margin: 0;
}

.hangman {
  font-size: 40px;
  color: #37a1da;
  font-family: Trattatello, fantasy, "Lucida Grande", Helvetica, Arial,
    sans-serif;
  text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
  margin: 0;
  margin-left: 20px;
}

.scoreboard {
  border: 1px solid black;
  background-color: whitesmoke;
  font-size: 20px;

  display: flex;
  justify-content: center;
}

#trophy {
  margin: 3px;
}

.pagedisplay {
  border: 1px solid black;
  display: flex;
  justify-content: space-around;
  background-color: whitesmoke;
}

.letterbuttons {
  border: 1px solid black;
  width: 20%;
  /* display: flex;
    flex-direction: column; */
  font-family: monospace;
  font: 1.3em "Fira Mono", "Courier New", Arial;
  padding: 0.8em;
  margin: 0.1em 1em;
}

.letterRow1,
.letterRow2,
.letterRow3,
.letterRow4,
.letterRow5,
.letterRow6 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* flex-wrap: wrap;
    align-content: space-around; */
}

.letterbuttons input {
  font-size: 30px;
  width: 50px;
}

.dashesAndWord {
  width: 50%;
}

#startImg {
  max-width: 100%;
  max-height: 100%;
}

#newwordbutton {
  font-size: 30px;
  width: fit-content;
  background-color: rgb(221, 238, 108);
  box-shadow: 0px 3px 0px rgb(121, 118, 20), 0px 3px 5px rgba(116, 108, 15, 0.7);

  display: none;
}

#restartbutton {
  font-size: 30px;
  width: fit-content;
  background-color: rgb(213, 92, 92);
  box-shadow: 0px 3px 0px rgb(108, 19, 19), 0px 3px 5px rgba(97, 27, 2, 0.817);

  display: none;
}

#newwordbutton:hover,
#restartbutton:hover {
  background-color: rgb(79, 147, 79);
}

#restartANDnewwordbuttondiv {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.hangmanImgArea {
  width: 20%;
}

#hangmanImg {
  display: none;

  width: 100%;
  height: 70%;
  object-fit: contain;
  position: relative;
}

#gameoverimg {
  display: none;
}
