:root {

  /* FONTS */

  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Quattrocento', serif;

  /* TECH COLORS */

  --color-primary: #2563EB;
  --color-secondary: #1E40AF;
  --color-accent: #60A5FA;

  --color-bg: #F8FAFC;
  --color-text: #0F172A;
  --color-muted: #64748B;

}

/* RESET */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--color-primary);
}


