h1 {
 text-align: center;
 color: #ffffff;
}

html, body { background-color: #232323; }

      body {
        height: 100%;
        background-color: var(--color-background);
        margin: 0;
        padding: 0;
        /* Prevent scrollbar appearing on page transition */
        overflow-y: hidden;
      }
      html {
        height: 100%;
      }

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

.letter-box {
  border: 2px solid gray;
  border-radius: 3px;
  margin: 2px;
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.filled-box {
  border: 2px solid black;
}

.letter-row {
  display: flex;
}

#keyboard-cont {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#keyboard-cont div {
  display: flex;
}

.second-row {
  margin: 0.5rem 0;
}

.keyboard-button {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.7rem;
  margin: 0 2px;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #333333;
  color: #ffffff;
  touch-action: manipulation;
}

