:root {
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 960px;

  /* Colors */
  --color-dark: #222;
  --color-dark-alternative: #111;
  --color-light: #fffceb;
  --color-light-alternative: #a8c1db;
  --color-neutral: #666;
  --color-primary: #ffd800;
  --color-primary-active: #e6ca2e;
  --color-secondary: #42b7ff;
  --color-secondary-active: #66c4ff;

  --color-text: var(--color-light);
  --color-text-placeholder: var(--color-text);
  --color-text-inverse: var(--color-dark);
  --color-text-tooltip: var(--color-dark);
  --color-text-muted: var(--color-neutral);

  --color-code: var(--color-light-alternative);
  --color-code-comment: #b3a36a;
  --color-code-string: #e4e39d;
  --color-code-deleted: #772819;
  --color-code-inserted: #2b723d;

  --color-bg-content: var(--color-dark);
  --color-bg-box: #2b2b2b;
  --color-border: #0a0a0a;

  /* Text */
  --default-font: 'HelveticaNeue', 'Helvetica Neue', 'Helvetica', 'TeXGyreHerosRegular', 'Tahoma',
    'Geneva', 'Arial', sans-serif;
  --font-family-heading: 'Quicksand', sans-serif;
  --font-family-body: var(--default-font);
  --font-family-monospace: 'Consolas', 'Monaco', monospace;
  --font-size-text-small: 1rem;
  --line-height-text-small: 1;
  --font-size-text: 1.125rem;
  --line-height-text: 1.3;
  --font-size-text-page-content: 1.25rem;
  --line-height-text-page-content: 1.1;
  --font-size-h4: 1.25rem;
  --line-height-h4: 1.5;
  --font-size-h3: 1.6rem;
  --line-height-h3: 1.2;
  --font-size-h2: 2rem;
  --line-height-h2: 1;
  --font-size-h1: 2.65rem;
  --line-height-h1: 1;
  --font-size-header-title: var(--font-size-h1);
  --line-height-header-title: var(--line-height-h1);
  --font-size-navigation: var(--font-size-page-content);
  --line-height-navigation: var(--line-height-page-content);
  --font-size-code: var(--font-size-text-small);
  --line-height-code: var(--line-height-text-small);
  --font-weight-bold: 800;
  --font-weight-semibold: 600;
  --font-weight-book: 500;
  --font-weight-regular: 400;

  /* Sizing */
  --spacing-xxs: 0.25rem;
  --spacing-xs: 0.5rem;
  --spacing-s: 1rem;
  --spacing-m: 2rem;
  --spacing-l: 3rem;
  --border-radius: 4px;
  --logo-size: 5rem;
  --content-max-width: 60rem;
  --content-padding: var(--spacing-s);
}

@media screen and (max-width: 960px) {
  :root {
    --font-size-h4: 1rem;
    --font-size-h3: 1.4rem;
    --font-size-h2: 1.618rem;
    --font-size-h1: 2.118rem;
    --line-height-text-page-content: 1.25;
    --font-size-header-title: 2rem;
    --line-height-header-title: 1;
    --font-size-navigation: 1.15rem;
    --line-height-navigation: 1;
  }
}
