/* styles.css */

body {
    margin: 0;
    padding: 0;
    background-color: #000000; /* Ensure background is black */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center elements horizontally */
    min-height: 100vh;
    overflow: hidden; /* Prevent scrolling */
  }
  
  #gameCanvas {
    border: 2px solid #fff;
  }
  
  #controls {
    margin-top: 20px; /* Space between canvas and controls */
    display: flex;
    justify-content: center; /* Center buttons */
    gap: 10px;
  }
  
  .control-button {
    width: 60px;
    height: 60px;
    font-size: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 10px;
    outline: none;
  }
  
  .control-button:active {
    background-color: rgba(200, 200, 200, 0.7);
    transform: scale(0.9);
  }
  