@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@font-face {
  font-family: "Onder";
  src: url("../fonts/onder.ttf");
}
@font-face {
  font-family: "GALSB";
  src: url("../fonts/GALSB.ttf");
}
* {
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  background: linear-gradient(300deg, #2a324b, #0e1019, #2a324b);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
  overflow-x: hidden;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}/*# sourceMappingURL=index.css.map */