body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #161718;
    flex-direction: column;
  }
  
  canvas {
    border: 2px solid #0d2f31;
    margin-bottom: 20px;
  }
  
  #mobileControls {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  button {
    font-size: 24px;
    padding: 15px;
    border-radius: 5px;
    border: none;
    background-color: #030000;
    color: rgb(255, 255, 255);
    cursor: pointer;
  }
  
  button:hover {
    background-color: #07eb53;
  }
  