:root {
  --font-sans: "Nunito Sans", sans-serif;
  --bg: #bdbdbd;
  --text: #352f36;
  --accent: #eee;
  --focus-ring: rgba(53,47,54,0.12);
  --page-gap: 2rem;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  padding-top: clamp(1rem, 2.5vh, 1.5rem);
  margin: 0;
  line-height: 1.45;
}

.container {
  margin: var(--page-gap);
  padding: 0 1rem;
  text-align: left;
  max-width: none;
}

ul {
  list-style-type: none;
  padding: 0;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 3rem 0 0;
  font-size: max(1.75rem, 4vh);
  vertical-align: middle;
}

.icon a {
  transition: color 180ms ease, opacity 180ms ease, transform 120ms ease;
  color: var(--text);
  opacity: 0.9;
  text-decoration: none;
}

.icon a:hover,
.icon a:focus {
  opacity: 1;
  color: var(--accent);
  transform: translateY(-2px);
}

.icon a:focus-visible {
  box-shadow: 0 0 0 3px var(--focus-ring);
  border-radius: 6px;
}


h1 {
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(0.5rem, 2vw, 1.5rem);
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .icon a {
    transition: none !important;
    transform: none !important;
  }
}