/* dream-on-chain css by pekko */
* {
    font-family: monospace;
    margin: 0;
    padding: 0;
  }
  html {
    background: #101010;
  }
  html,
  body {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
canvas {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    z-index: 99;
  }