html {
  height: 1400px;
  width: 100%;
  max-width: 100vw;
  min-width: 250px;
}

body {
  padding: 0;
  margin: 0;
  background-color: #000000;
  height: 100%;
  width: 100%;
  font-family: "Space Mono";
  color: white;
  position: relative;
}

#cursor-follow > span {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: transparent;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  pointer-events: none;
  user-select: none;
  z-index: 10000;
}

@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

