.gameRow__root {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 5px;
}

.gameRow__tile {
  border: 2px solid #d3d6da;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: bold;
  vertical-align: middle;
  box-sizing: border-box;
  text-transform: uppercase;
  user-select: none;
}

@media (max-height: 600px) {
  .gameRow__tile {
    font-size: 1.25rem;
    line-height: 1.25rem;
  }
}

.gameRow__tile::before {
  content: '';
  display: inline-block;
  padding-bottom: 100%;
}

.gameRow__tile[data-state='empty'] {
  border: 2px solid #d3d6da;
  color: white;
}

.gameRow__tile[data-state='correct'] {
  border: 2px solid #d3d6da;
  background: #6aaa64;
  color: white;
}

.gameRow__tile[data-state='partial'] {
  border: 2px solid #d3d6da;
  background: #c9b458;
  color: white;
}

.gameRow__tile[data-state='wrong'] {
  border: 2px solid #d3d6da;
  background: #787c7e;
  color: white;
}
