@import "tailwindcss";

:root {
  --ffl-black: #0a0a0a;
  --ffl-red: #e10600;
  --ffl-red-deep: #b00000;
  --ffl-white: #f5f5f5;
  --ffl-muted: #a3a3a3;
  --background: var(--ffl-black);
  --foreground: var(--ffl-white);
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-ffl-black: var(--ffl-black);
  --color-ffl-red: var(--ffl-red);
  --color-ffl-red-deep: var(--ffl-red-deep);
  --color-ffl-white: var(--ffl-white);
  --color-ffl-muted: var(--ffl-muted);
  --font-display: var(--font-display);
  --font-sans: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(225, 6, 0, 0.28), transparent 55%),
    radial-gradient(900px 500px at -10% 30%, rgba(225, 6, 0, 0.12), transparent 50%),
    var(--ffl-black);
  color: var(--ffl-white);
  font-family: var(--font-body), system-ui, sans-serif;
}

h1,
h2,
h3,
.font-display {
  font-family: var(--font-display), Impact, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--ffl-red);
  color: white;
}

.prose-ffl p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: #e5e5e5;
}

.prose-ffl h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.75rem;
  color: white;
}

.prose-ffl ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  line-height: 1.7;
  color: #e5e5e5;
}
