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

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

main {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main h1 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: white;
}
main h3 {
  margin-top: 1%;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: white;
  opacity: 0.4;
  text-align: center;
}
main button {
  padding: 18px;
  background: #F7C59F;
  color: #000;
  border: none;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin: 2.5% 0;
  transition: all 200ms ease-in-out;
}
main button:hover {
  background: #745d4c;
}/*# sourceMappingURL=welcome.css.map */