html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-retro);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);

  /* Sharpen pixel-retro font rendering */
  font-weight: 400;
  line-height: 1;
  text-rendering: geometricPrecision;
}


/* CONTAINER - from header-styles.css and Portfolio-styles.css */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-lg);
}

/* MAIN - from header-styles.css */
.main {
  padding-top: 0;
}