#gameContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

#stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

#colorBox {
  width: 50vw;
  /* 50% of the viewport width */
  height: 50vw;
  /* Same as width to maintain a square shape */
  max-width: 600px;
  /* Max size */
  max-height: 600px;
  /* Max size */
  min-width: 400px;
  /* Min size */
  min-height: 400px;
  /* Min size */
  background-color: grey;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#colorText {
  font-size: 2em;
  color: white;
}