:root {
  --font-base: 'Turret Road', sans-serif;
  --font-heading: 'Orbitron', sans-serif;
  --font-size-base: 20px;
  --font-size-med: 18px;
  --font-size-sml: 16px;

  --color-primary: #ffffff;
  --color-accent: #47C8FF;
  --color-text: #ffffff;
  --color-bg: #262626;
  --color-lb: #b482ff;
  --color-so: #ffb347;
  --color-fc: #47C8ff;

  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-rg: 20px;
  --spacing-lg: 25px;
  --spacing-xl: 50px;

  --z-bg: -1;
  --z-base: 1;
  --z-overlay: 10;

}

/* ╔═════════════════╗ */
/* ║ ╔═════════════╗ ║ */
/* ║ ║ TEST CONFIG ║ ║ */
/* ║ ╚═════════════╝ ║ */
/* ╚═════════════════╝ */
/* ╭──────────╮ */
/* │ HEADINGS │ */
/* ╰──────────╯ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
  text-align: center;
}
h1, h2, h3, h4, h5, h6 {
  text-shadow: 0 0 5px rgba(0, 0, 0, 1);
}
h1 { font-size: 32px; }
h2 { font-size: 22px; }
h3 { font-size: 20px}
h4 { font-size: 20px; }
@media (min-width: 768px) and (max-width: 1024px) {
  h1 { font-size: 46px; }
  h2 { font-size: 28px; }
  h3 { font-size: 26px; }
  h4 { font-size: 22px; }
}
@media (min-width: 1025px) {
  h1 { font-size: 72px; }
  h2 { font-size: 32px; }
  h3 { font-size: 28px; }
  h4 { font-size: 24px; }
  h5 { font-size: 20px; }
  h6 { font-size: 16px; }
}

/* ╭────────────╮ */
/* │ PARAGRAPHS │ */
/* ╰────────────╯ */
p {
  /* margin-bottom: var(--spacing-rg); */
  line-height: 1.6;
  color: var(--color-text);
  font-size: var(--font-size-base);
  text-shadow: 0 0 3px rgba(0, 0, 0, 1);
}

/* ┌───────┐ */
/* | LINKS | */
/* └───────┘ */
a {
  color: var(--color-accent);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}