*{
  font-family: "Comic Sans MS",cursive, sans-serif;
  color: white;
}

/* Page Design */

html {
  height: 500vh;
  scrollbar-width: none;
}

html::-webkit-scrollbar{
  display:none;
}

.customlink{
  text-decoration: none;
  background: linear-gradient(0deg, #211F2F, #918CA9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

@keyframes gradMove {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}


.gradient-box {
  background: linear-gradient(90deg, #9BAFD9, #103783);
  background-size: 200% 200%;
  animation: 9s ease-in-out 0s alternate infinite gradMove
}