@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

:root {
  --black:#000000;
  --orange: #e44211;
  --blue: #0c0239;
  --yellow: #fdc700;
  --purple: #8200db;
}

.shiny-btn {
  position: relative;
  overflow: hidden;
}

.shiny-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }

  25% {
    left: 125%;
  }

  100% {
    left: 125%;
  }
}

body {
  font-family: "Figtree", sans-serif;
}
