@import "tailwindcss"; @layer base { h1 { @apply text-2xl; } h2 { @apply text-xl; } h3 { @apply text-lg; } } html, body { margin: auto; padding: 0; height: 100%; width: 50vw; min-width: 300px; max-width: 700px; display: flex; flex-direction: column; } main { flex: 1; } .footer { flex: 0; background-color: green; } body { font-family: "Maple Mono", monospace; }