html, body {
  position: relative;

  height: 100vh;
  width: 100vw;

  margin: 0;
  padding: 0;

  overflow: hidden;
}

*,
*::after,
*::before {
  box-sizing: content-box;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  height: 100vh;
  width: 100vw;

  object-fit: contain;
}
