/* Variables CSS y configuración base */

/* Declaración de fuente Impact */
@font-face {
  font-family: "Impact";
  src: url("../fonts/impact.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
  font-weight: 400;
  color-scheme: dark;
  --gold: #fefab1;
  --amber: #fefab1;
  --forest: #143a2a;
  --carbon: #0b0c0f;
  --sand: #b7865f;
  color: #fef6e8;
  background-color: var(--carbon);
}

