html,
body {
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: black);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

canvas {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

#info{
  position: absolute;
  bottom: 0;
  left: 0;
  color: rgb(53, 53, 53);
  z-index: 1;
  margin: 20px;
  font-family: monospace;
  font-size: 0.7rem;
  transition: color 0.5s;
}

#info:hover{
  color: rgb(204, 204, 204);
}



h1, h2 {
  margin-bottom: 0px;
}