@tailwind base;
@tailwind components;
@tailwind utilities;

@layer utilities {
  .text-game-style-lg {
    color: white;
    -webkit-text-stroke: 2px black;
    text-shadow: 4px 4px 0px #000;
  }

  .text-game-style-sm {
    color: white;
    -webkit-text-stroke: 0.4px black;
    text-shadow: 2px 2px 0px #000;
  }
}

html {
    scroll-behavior: smooth;
}