/**
 * file: falling_apples_game_style.css
 * type: Cascading-Style-Sheet
 * date: 06_AUGUST_2025
 * author: karbytes
 * license: PUBLIC_DOMAIN
 */

body {
  background: #f9f9f9;
  font-family: sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

h1 {
  margin-top: 1em;
}

#scoreboard {
  font-size: 1.2em;
  margin-bottom: 10px;
}

#game-container {
  position: relative;
  display: inline-block;
}

#game-canvas {
  border: 2px solid #333;
  background-color: #e0f7fa;
}

#controls {
  margin-top: 10px;
}

button {
  font-size: 1.5em;
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
}

#restart-btn {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1.1em;
  cursor: pointer;
}