/* VG-STYLES 2024 */
:root {
    color-scheme: light dark;
  }
  * {
    margin: 0;
    padding: 0;
  }
  html {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100svh;
    width: 100%;
    overflow: hidden;
    background-color: rgb(41 41 41);
  }
  main {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  canvas {
    max-width: 100vw;
    max-height: 100vh;
  }