styles.css

 1/* This file is compiled to /assets/styles/tailwind.css via script/tailwind */
 2
 3@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&family=Spectral:ital,wght@0,200;0,300;1,800&display=swap');
 4
 5@tailwind base;
 6@tailwind components;
 7@tailwind utilities;
 8
 9@layer base {
10    html {
11        font-size: 125%;
12        text-rendering: geometricPrecision;
13    }
14    h1 {
15        @apply text-4xl;
16        @apply tracking-tighter;
17    }
18    h2 {
19        @apply text-3xl;
20        @apply tracking-tighter;
21    }
22    h3 {
23        @apply text-2xl;
24        @apply tracking-tighter;
25    }
26}