body {
  background-color: #027990;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h1 {
  color: #1e1e26;
  text-align: center;
}
#game-area {
  width: 30%;
  height: 30vw;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  background-color: white;
}

.game-spot {
  width: 100%;
  border: 5px solid #00c7cf;
  height: 100%;
}
.game-spot:hover {
  background-color: #aba0f2;
  color: #027990;
}
.game-spot:nth-child(3n + 1) {
  border-left: 0px;
}
.game-spot:nth-child(3n) {
  border-right: 0px;
}
.game-spot:nth-child(1),
.game-spot:nth-child(2),
.game-spot:nth-child(3) {
  border-top: 0px;
}
.game-spot:nth-child(7),
.game-spot:nth-child(8),
.game-spot:nth-child(9) {
  border-bottom: 0px;
}
#player-info-area{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
#player-info-area > *{
  display: inline;
}
#start-button{
  grid-column-start: 1; 
  grid-column-end: 4;
  grid-row-start: 1; 
  grid-row-end: 4;
}
.game-spot, button{
  background-color: #027990;
  color: #00c7cf;
  font-size: 15vh;
  text-align: center;
}
#p1-area, #p2-area{
  height: 100px;
  /*display: flex;
  align-items: center;
  justify-content: center;
  clear: both;*/
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  justify-content: center;
  
}
#p1-area > *, #p2-area > *{ 
  width: 40%;
}