* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

header nav {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
}

header nav a {
  color: #333;
  text-decoration: none;
}

header nav a:hover {
  text-decoration: underline;
}

h1 { margin-bottom: 1rem; }
h2 { margin: 1.5rem 0 0.5rem; }

.page-body, .project-body {
  margin-top: 1rem;
}

.page-body img, .project-body img {
  max-width: 100%;
  height: auto;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card h2 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.project-card a {
  color: #333;
  text-decoration: none;
}

.project-card a:hover {
  text-decoration: underline;
}
