html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  
  .logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
  }

  .game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }


canvas {
    border: 1px solid black; /* Optional: Add a border to the canvas */
    background-image: url("lego_spaceship1.png"); /* Replace this with the path to your background image */
    background-size: cover;
    background-position: center;
}