/* style.css */
body {
  margin: 0;
  overflow: hidden;
  background-color: #f3f3f3;
  font-family: Arial, sans-serif;
}

#game-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gameCanvas {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #87ceeb, #ffffff);
}

#score {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #333;
  font-size: 1.5em;
}
