/* ==========================
   Base Styles
========================== */

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

/* Typography */

h1,
h2,
h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

h3 {
  font-weight: 500;
}

p {
  font-size: 1.05rem;
  font-weight: 300;
}

/* Links */

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

main a:not(.btn):hover,
main a:not(.btn):focus {
  color: var(--color-accent);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
