@import "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap";
/* [project]/src/styles/globals.css [client] (css) */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background: #c6c6c6;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}


/*# sourceMappingURL=src_styles_globals_4738091e.css.map*/