* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  background: #fafafa;
  padding: 2rem 1.5rem;
}
.wrap {
  max-width: 640px;
  margin: 0 auto;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}
h1 {
  font-family: 'Lilex', monospace;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 1.5rem;
}
p {
  margin-bottom: 1rem;
}
a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover { background: #e0e0e0; }
.mono {
  font-family: 'Lilex', monospace;
  font-size: .9375rem;
}

.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.project-card {
  border: 1px solid #ddd;
  padding: .75rem;
}
.project-card h3 {
  font-family: 'Lilex', monospace;
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: .25rem;
}
.project-card p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: .875rem;
  margin-bottom: 0;
}

.project-card a:hover { background: transparent; }
.project-card a:hover h3 { background: #e0e0e0; }

.skill-pills {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}
.skill-pill {
  background: #e0e0e0;
  padding: .25rem .5rem;
  border-radius: 999px;
  font-family: 'Lilex', monospace;
  font-size: .9375rem;
}
