body {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
      "Lucida Sans", Arial, sans-serif;
    background-color: #2b2b2b;
    color: rgb(255, 238, 238);
    text-align: center;
}

.hide{
  visibility: hidden;
}

.top {
    /*209, 209, 209*/
    background-color: rgb(30, 30, 30);
    border-radius: 15px;
    width: 100%;
}

.game{
  display: flex;
  flex-direction: column;
  align-items: center;
}

#title{
  padding: 50px;
}

#Hangman{
  transform: scale(0.5);
}

#keyboard{
  margin-top: 0;
}

.keyboard-row {
  display: flex;
  justify-content: center;
}
.keyboard-button {
  width: 50px;
  height: 50px;
  margin: 5px;
  font-size: 26px;
  text-align: center;
  cursor: pointer;
  font: "Courier New";
  font-family: "Courier New", monospace;
}

#drawing{
  margin: 10px;
  background-color: rgb(148, 146, 146);
  border: 2px solid white;
}

#streak{
  margin-top: 15px;
  position: absolute;
  top: 0;
  right: 0;
}

#icon{
  margin-top: 10px;
  margin-right: 3px;
  height: 25%;
  width: 25%;
}

#streakCount{
  font-size: 55px;
}