/* Center the game canvas */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  margin: 0;
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
}

/* Style the game canvas */
#gameCanvas {
  border: 2px solid #333;
  background-color: #fafafa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Style the stats display */
#stats {
  margin-top: 20px;
  font-size: 18px;
  color: #333;
  text-align: center;
}