@import url("https://fonts.googleapis.com/css2?family=Asap&display=swap");
* {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Asap", sans-serif;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #a0d8ef;
}
#contents {
  position: relative;
  color: white;
  z-index: 1;
}
h1 {
  position: fixed;
  top: 1vw;
  left: 1vw;
}
h2 {
  position: fixed;
  bottom: 1vw;
  right: 1vw;
}
h1,
h2 {
  font-size: 13vw;
}
canvas {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 0;
}