@layer base {
  body {
    @apply font-inter bg-black text-white antialiased selection:bg-emerald-500/30;
    margin: 0;
  }
}
@layer components {
  .text-shadow-glow {
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
  }
  .text-shadow-strong {
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
  }
  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }
  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
