/* style.css */
body { font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
background-image: url('/images/bg.png');
background-position: center;
background-size: cover;
background-attachment: fixed;

}

/* #game-container {
  width: 800px;
  height: 600px;
  background: #111;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
} */

/* HUD styling */
.hud { font-size: 1.15rem; font-weight: 600; color: #fff; }

/* Centering tweaks for menu/gameover */
#menu-screen h1 { font-size: 2.25rem; }
#gameover-screen h2 { font-size: 2rem; }


#game-container {
  width: 400px;        /* fixed game width */
  height: 600px;       /* fixed game height */
  margin: 0 auto;
  border: 3px solid #fff; 
  background: #87CEEB; /* light blue sky background */
}
canvas {
  display: block;
  margin: 0 auto;
}
