@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&display=swap');

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #2c2f33; /* Dark grey background */
    font-family: 'DynaPuff', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #app {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #game-container canvas {
    display: block;
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    background-color: #1e2124; /* Slightly darker than page bg */
  }
  
