h1{
    text-align: center;
    font-family: Arial;
}
h2{
    text-align: center;
    font-size: 10px;
    color: #999999;
}

body{
    touch-action: manipulation;
}

button {
  all: unset;
  cursor: pointer;
  border: 1px solid black;
  border-radius 10px;
}


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

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

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

.letter-row {
  display: flex;
}

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

#keyboard-cont div {
  display: flex;
}

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

.keyboard-button {
    font-family: Arial;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.5rem;
  margin: 0 2px;
  cursor: pointer;
  text-transform: uppercase;
}