@tailwind base; @tailwind components; @tailwind utilities; @font-face { font-family: "Pokemon Classic"; src: url("pokemon-classic.ttf") format("truetype"); } @layer base { a { @apply underline; } a:hover { @apply text-red-600; } .nav-links a { @apply no-underline; } .text-display { font-family: "Pokemon Classic", sans-serif; } h1, h2, h3, h4, h5, h6, .subtitle { @apply text-display; } } @layer components { .btn { @apply px-4 py-2 border border-black cursor-pointer; } .btn-primary { @apply btn bg-orange-900 text-orange-100; } }