body {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      background-image: url('./pics/als.PNG');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }

    #game-container {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Shadow effect */
      padding: 20px;
    }

    #score {
      position: absolute;
      left: 10px;
      top: 10px;
      font-size: 24px;
      font-family: 'Comic Sans MS', cursive;
    }

    canvas {
      border: 1px solid #000;
    }
