Mistral-AI-Game-Jam/DefendDaniel2
7
1@tailwind base;2@tailwind components;3@tailwind utilities;4 5@layer base {6 :root {7 --font-shadows: var(--font-shadows-into-light);8 }9}10 11@layer utilities {12 .shadows-into-light-regular {13 font-family: var(--font-shadows);14 }15 .font-crimson {16 font-family: var(--font-crimson);17 }18}19 20body {21 font-family: Arial, Helvetica, sans-serif;22}23 24.shadows-into-light-regular {25 font-family: "Shadows Into Light", serif;26 font-weight: 400;27 font-style: normal;28}29 30.poppins {31 font-family: var(--font-poppins);32 font-weight: 400;33 font-style: normal;34}35 36.roboto {37 font-family: var(--font-roboto);38 font-weight: 400;39 font-style: normal;40}41 42.roboto-slab {43 font-family: var(--font-roboto-slab);44 font-weight: 400;45 font-style: normal;46}