/* style.css */
body {
    font-family: sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    margin-top: 50px;
  }
  
  #game {
    background: white;
    display: inline-block;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
  }
  
  button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
  }  