* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
}

body,
html {
  width: 100%;
  height: 100%;
  overflow: hidden; /* Prevent scrolling */
}

#canvas {
  background: white;
  width: 100dvw;
  height: 100dvh;
  transition: background-color 0s;
  /* background: conic-gradient(
    hsl(360 100% 50%),
    hsl(315 100% 50%),
    hsl(270 100% 50%),
    hsl(225 100% 50%),
    hsl(180 100% 50%),
    hsl(135 100% 50%),
    hsl(90 100% 50%),
    hsl(45 100% 50%),
    hsl(0 100% 50%)
  ); */
  /* clip-path: circle(closest-side); */
}

.text {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  position: absolute;
  font-size: 32px;
  font-weight: 900;
  color: rgb(100, 100, 100, 0.1);
  /* mix-blend-mode: overlay; */
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}

.info {
  text-align: start;
  padding-left: 20px;
  bottom: 15px;
  font-size: 38px;
  text-decoration: none;
}
