/*-----------Stilregler basert på skjermstørrelse-----------*/
@media only screen and (min-width: 900px) {/*Gjelder for større enheter*/
  #guessbtn:hover{
    background-color: #999999;
    cursor: pointer;
  }
}
/*-----------Stilsetting av tegneflaten-----------*/
canvas {
  position: absolute;
  bottom: 0px;
  background-color: #8b0000;
}

/*-----------Stilsetting av UI-delen-----------*/
.hangContainer{/*Container til brukerinput*/
  box-sizing: border-box;
  width: 100%;
  height: 25%;
  background: white;
  padding-left: 10px;
  padding-top: 1px;
}
.hangLetter {/*Skrifttypen brukt i spillet*/
  font-family: "Comic Sans MS", cursive, sans-serif;
}

#userInput {
  font-family: "Comic Sans MS", cursive, sans-serif;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

#guessbtn {
  font-size: 15px;
  border-radius: 8px;
  padding: 10px 10px;
  font-weight: bold;
  font-family: "Comic Sans MS", cursive, sans-serif;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
  outline: none;/*fungerer ikke i alle nettlesere*/
}

.warning {/*Feilmeldings-tekst*/
  color: red;
}

#usedLetters {
  color: blue;
  font-size: 20px;
}
