.game-square {
  height: 250px;
  width: 250px;
  border: 1px solid black;
  background-color: white;
  text-align:center;
  font-size:150px;
}

h1 {
  font-size: 50px;
}

#mode-status {
  border: 1px solid black;
  font-size: 25px;
  text-align: center;
}

#game-controls {
  min-height: 80px;
}

button {
  font-size: 30px
}

.end-square {
  height: 250px;
  width: 250px;
  border: 1px solid black;
  background-color: white;
  text-align:center;
  font-size:150px;
}

.game-output {
  display:none;
}

body {
  padding-left: 15%;
  padding-top: 40px;
  background-color: lightblue;
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 750px;
}