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

#selector{
    font-family: 'Mirante';
    font-weight: 300;
    font-size: x-large;
    color: rgb(223, 240, 240);
}

.letter-box {
  border: 2px solid #99AABB;
  border-radius: 3px;
  margin: 2px;
  font-size: 2.5rem;
  font-weight: 700;
  height: 3rem;
  width: clamp(2rem, calc((100vw - 96px) / 12), 3rem);
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  box-sizing: border-box;
}

.filled-box {
  border: 2px solid #99AABB;
}

.letter-row {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  font-family: 'Mirante';
  font-weight: 300;
  font-size: x-large;
  max-width: 90%;
}

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

#keyboard-cont div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 90%;
}

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

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

.action-button {
  font-family: 'Mirante';
  display: block;
  margin: 0 auto 1rem;
  padding: 0.75rem 1.2rem;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #333;
  border-radius: 5px;
  background: #fff;
}

.toast-success, .toast-error, .toast-info{
    background-color: #101a36;
    color: #99AABB;
}