body {
  margin: 0;
  padding: 0;
  font-size: 14pt;
  font-family: "Trebuchet MS", Arial, sans-serif;
  background: #111;
  color: #EEE;
  /* Disable double-tap-zoom functionality */
  touch-action: manipulation;
}

.wrapper {
  width: 680px;
  height: 100%;
  margin: 0 auto;
}

.title {
  margin-top: 40px;
  font-size: 22pt;
  text-align: center;
}

.game {
  width: 410px;
  margin: 120px auto 120px auto;
}

.row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.letter {
  display: flex;
  width: 65px;
  height: 65px;
  margin: 5px;
  justify-content: center;
  align-items: center;
  font-size: 26pt;
  text-transform: uppercase;
  border: 2px #333 solid;
}

.placeholder {
  background-color: rgba(255, 255, 0, 0.1);
}

.keyboard {
  width: 680px;
}

.keyboard .row {
  display: flex;
  width: 680px;
  justify-content: center;
}

.keyboard .l {
  width: 40px;
  height: 50px;
  margin: 4px;
  padding-top: 6px;
  padding-left: 10px;
  border-radius: 8px;
  background: #707070;
  cursor: pointer;
}

.location {
  background-color: rgb(181, 159, 59) !important;
}
.incorrect {
  background-color: rgb(58, 58, 60) !important;
}
.correct {
  background-color: rgb(83, 141, 78) !important;
}
