:root {
  --font-sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  --text-color: #111;
  --link-color: #111;
  --bg-color: #fff;
}

body {
  font-family: var(--font-sans);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.5;
  max-width: 680px;
  margin: 4rem auto;
  padding: 0 1rem;
  font-size: 14px;
}

/* Header */
header {
  margin-bottom: 3rem;
}

h1 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.contact-links {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.contact-links a {
  text-decoration: underline;
  color: var(--link-color);
}

.tagline {
  color: #444;
  margin-bottom: 1rem;
}

/* Sections */
section {
  margin-bottom: 2rem;
}

h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: lowercase;
}

/* Lists */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  margin-bottom: 1rem;
}

/* Links within content */
a {
  color: var(--link-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  background-color: #eee;
}

/* Text styling */
.description {
  color: #333;
}
