.tutorial {
  cursor: none;
  --color-text: rgba(100, 100, 100, 0.3);
  --color-link: #2c98f0;
}
.cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
}
.cursor-small {
  width: 5px;
  height: 5px;
  left: -2.5px;
  top: -2.5px;
  border-radius: 50%;
  z-index: 11000;
  background: var(--color-text);
}
.cursor-canvas {
  width: 100vw;
  height: 100vh;
  z-index: 12000;
}

.button {
  display: flex;
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);  
}

.link-1 {
  cursor: none;
  display: inline;
  justify-content: center;
  align-items: center;
}

.link-1:hover {
  cursor: none;
  color:rgb(44, 152, 240);
}

.cursor-none {
  cursor: none;
}