body {
  background-color: black;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100vh;
  justify-content: center;
}

.stats {
  display: flex;
  flex-direction: row;
  padding: 30px;
}

#gameBoard {
  padding: 20px;
}

#title {
  font-family: 'Press Start 2P', cursive;
  color: white;
  font-size: 40px
}

#score {
  display: inline-block;
  color: white;
  font-size: 32px;
  font-family: 'Press Start 2P', cursive;
  padding-right: 30px;
}

#lives {
  display: inline-block;
  color: white;
  font-size: 32px;
  font-family: 'Press Start 2P', cursive;
  padding-left: 30px;
}

.button {
  background-color: yellowgreen;
  color: white;
  font-family: 'Press Start 2P', cursive;
  padding: 15px;
  font-size: 35px;
  border: 6px white solid;
  box-shadow: inset -4px -4px 0px 0px #4AA52E;
}

.button:hover {
  background-color: rgb(158, 211, 51); 
  box-shadow: inset -4px -4px 0px 0px rgb(0, 207, 0);
}

.button:active {
  box-shadow: inset 4px 4px 0px 0px rgb(0, 207, 0);
}

#gameOver {
  position: fixed;
  text-align: center;
  height: 150px;
  width: 300px;
  padding-top: 33px;
  background-color: black;
  top: 50%;
  left: 50%; 
  transform: translate(-50%, -50%);
  border: 1px solid red;
  font-family: 'Press Start 2P', cursive;
  font-size: 40px;
  color: red;
  visibility: hidden;
}