.game-grid-view--grid {
  width: 100vw;
  max-width: 500px;
  height: auto;
  aspect-ratio: 1 / 1;
}
.game-grid-view--row {
  display: flex;
  width: 100%;
  height: 20%;
}
.game-grid-view--cell {
  position: relative;
  width: 20%;
  height: 100%;
  border: 1px solid white;
}
.game-grid-view--target {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #32CD32;
  box-shadow: 0px 0px 20px 10px rgba(0, 255, 0, 0.7);
}
.game-grid-view--target > * {
  width: 100%;
  height: 100%;
}
.game-grid-view--target:active {
  background-color: #ffa500;
}
.game-grid-view--hidden-target {
  display: none;
}
