body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: Linen;
}
h1 {
  margin: 20px 0;
  font-family: 'Press Start 2P', Consolas, monospace;
  font-size: 20px;
}
.score-info {
  display: flex;
  justify-content: space-between;
  width: 400px;
  font-family: 'Press Start 2P', Consolas, monospace;
  font-size: 16px;
}
.score, .max-score {
  margin: 0;
}
.button {
  margin: 20px 0;
  padding: 10px 20px;
  font-family: 'Press Start 2P', Consolas, monospace;
  font-size: 16px;
  border: none;
  background-color: LightSteelBlue;
  transition: background-color 0.3s;
}
.button:hover {
  cursor: pointer;
  background-color: LightSlateGray;
}
.restart {
  visibility: hidden;
}