@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}
/* #canvas {
  color: hotpink;
} */
.heading {
  font-size: 4.5rem;
  color: white;
  z-index: 1;
  position: absolute;
  top: 40%;
  left: 50%;
  font-family: "Poppins";
  text-align: center;
  font-weight: 600;
  transform: translateX(-50%) translateY(-50%);
  line-height: 70px;
  animation: animHeading 2s linear infinite;
}
/* .heading2 {
  font-size: 2.5rem;

  color: white;
  z-index: 1;
  position: absolute;
  top: 68%;
  left: 50%;
  font-family: "Cookie", cursive;
  text-align: center;
  font-weight: 600;
  transform: translateX(-50%) translateY(-50%);
  line-height: 70px;
  animation: animHeading 2s linear infinite;
} */

.heading span {
  font-size: 1.5rem;
  color: rgb(0, 156, 203);
  line-height: 1rem;
}

@keyframes animHeading {
  0% {
    filter: drop-shadow(0px 0px 50px rgba(13, 166, 255, 0.826)) hue-rotate(0deg);
  }
  50% {
    filter: drop-shadow(0px 0px 100px rgba(13, 166, 255, 0.826))
      hue-rotate(120deg);
  }
  100% {
    filter: drop-shadow(0px 0px 50px rgba(13, 166, 255, 0.826)) hue-rotate(0deg);
  }
}
