:root {
  --accent: #69a9d4;
  --muted: #888;
  --font-sans: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'Consolas', 'Fira Code', 'Courier New', monospace;
  --default: #222;
}

body {
  font-family: var(--font-mono);
  line-height: 1.6;
  margin: 0;
  padding: 1rem;
  background: #f9f9f9;
  color: #333;

}
#resume-output {
  max-width: 900px;
  margin: auto;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h1.name {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact {
  text-align: center;
  margin-bottom: 1rem;
}

.contact p {
  margin: 0.25rem 0;
}

section {
  margin-top: 2rem;
}

h2 {
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.25rem;
}

.job {
  margin-top: 1.5rem;
}

.job h3 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.job time {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

ul.highlights {
  padding-left: 1.2rem;
  list-style-type: disc;
}

@media (max-width: 600px) {
  body {
    padding: 0.5rem;
  }

  h1.name {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .job h3 {
    font-size: 1rem;
  }

  #resume-output {
    padding: 1rem;
  }
}