@tailwind base; @tailwind components; @tailwind utilities; html { scroll-behavior: smooth; @apply bg-zinc-800 text-white autofill:bg-yellow-500; } ::-webkit-scrollbar { @apply h-4 w-4; } ::-webkit-scrollbar-track { @apply rounded-full bg-zinc-900; } body::-webkit-scrollbar-track { @apply rounded-full bg-pink-600; } ::-webkit-scrollbar-thumb { @apply rounded-full bg-zinc-600 hover:bg-zinc-500; } body::-webkit-scrollbar-thumb { @apply rounded-full bg-cyan-500 hover:bg-cyan-400; }