* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  line-height: 2;
  /* color: #151212; */
  color: #fff;
  background-color: #000;
  height: 100%;
  overflow: hidden;
  /* background-color: #eaeded;
  background-color: #ff3cac;
  background-image: linear-gradient(109.6deg, rgba(15, 2, 2, 1) 11.2%, rgba(36, 163, 190, 1) 91.1%); */
}
canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
}

.lighting {
  position: relative;
  text-align: center;
  z-index: 5;
  opacity: 0.4;
}
.hero__title {
  font-size: clamp(1.5rem, 4vw, 3rem);
}
.hero__text {
  font-size: clamp(0.75rem, 1.8vw, 1.25rem);
}

.stalker {
  position: fixed;
  top: -200px;
  left: -200px;
  right: 0;
  bottom: 0;
  width: 400px;
  height: 400px;
  background: repeating-linear-gradient(to right, #0047e1 0%, #34cdfe 50%, #00dc82 100%);
  filter: blur(100px);
  opacity: 0.5;
  border-radius: 50%;

  pointer-events: none;
  z-index: 1;
}
