:root {
    --boxSize: 470px;
    --boxSize8minus2: 54.25px;
    --boxSize6minus2: 73px;
}

.body {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
}

#letters {
  justify-self: center;
  width: var(--boxSize8minus2);
  height: var(--boxSize);
}

.alpha {
  margin-bottom: 1px;
  height: var(--boxSize6minus2);
  align-content: center;
  text-align: center;
  font-size: 2.5rem;
}

#top-numbers{
  width: var(--boxSize);
  justify-self: center;
  display: flex;
}

.top-num {
  width: var(--boxSize6minus2);
  height: 3rem;
  font-size: 2.5rem;
  align-content: center;
  text-align: center;
}

#board {
  width: var(--boxSize);
  height: var(--boxSize);  
  flex-shrink: 0;
  flex-grow: 0;
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-left: 0.5rem;
  margin-right: 0.5rem;

}

.game-square {
  width: var(--boxSize6minus2);
  height: var(--boxSize6minus2);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  border: 2px solid black;
}

#results {
  border: 2px solid black;
  width: var(--boxSize);
  height: 5rem;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#result-box {
  width: 100%;
  height: 3rem;
  align-content: center;
  text-align: center;
  font-size: 1.75rem;
}

#play-again {
  width: 10rem;
  font-size: 1.5rem;
  height: 2rem;
}

#player1box,
#player2box {

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 250px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  flex-grow: 0;
}

.player-name {
  font-size: 1.75rem;
  font-weight: 700;
}

.player-score {
  font-size: 2rem;
}

.player-marker {
  font-size: 3rem;
}

.player-turn {
  font-size: 1.25rem;
}

.title {
  font-size: 2.5rem;
  justify-self: center;
}

