body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #87CEEB;
  font-family: Arial, sans-serif;
  color: white;
}

.game-container {
  text-align: center;
}

#gameCanvas {
  background-color: #fff;
  border: 2px solid black;
  margin-top: 20px;
  width: 80vw;
  height: 60vh;
}

#startButton {
  padding: 10px 20px;
  font-size: 18px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

#scoreBoard {
  font-size: 20px;
  margin-top: 10px;
}
