:root {
  /* Colors */
  --color-white: #ffffff;
  --color-black: #141414;
  --color-accent: #1616d3;

  --color-black-30: rgba(20, 20, 20, 0.3);
  --color-black-60: rgba(20, 20, 20, 0.6);
  --color-accent-30: rgba(22, 22, 211, 0.3);
  --color-accent-70: rgba(22, 22, 211, 0.7);

  --color-navbar-on-accent: rgba(20, 20, 20, 0.9);
  --color-navbar-on-black: rgba(22, 22, 211, 0.9);
  --color-whitesmoke-25: rgba(245, 245, 245, 0.25);
  --color-transparent: transparent;

  /* Typography */
  --font-sans: "Cera Pro", "Cerapro", sans-serif;
  --font-display: "GeneralSans Variable", "General Sans", sans-serif;

  --text-xs: 0.875rem;
  --text-sm: 1.1rem;
  --text-md: 1.25rem;
  --text-lg: 1.5rem;
  --text-xl: 2rem;
  --text-2xl: 3rem;
  --text-3xl: 4rem;
  --text-4xl: 5rem;
  --text-hero: clamp(2rem, 9.01vw - 0.113rem, 8rem);
  --text-h4: clamp(1.3rem, 1.054rem + 1.05vw, 2rem);
  --text-button: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);

  --line-tight: 0.95;
  --line-snug: 1;
  --line-normal: 1.2;
  --line-relaxed: 1.3;
  --line-body: 1.4;

  /* Spacing */
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5rem;
  --space-9: 6rem;
  --space-10: 8rem;
  --space-11: 12rem;

  /* Radius */
  --radius-sm: 5px;

  /* Layout */
  --container-pad: 3rem;
  --nav-height: 5rem;
  --section-pad-y: 12rem;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--line-relaxed);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
