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

html {
  font-family: 'IBM Plex Mono', 'Menlo', 'Courier New', monospace;
  background: #0a0a0a;
  color: #999;
  font-size: 15px;
  line-height: 1.8;
  min-height: 100vh;
}

body {
  display: flex;
  justify-content: center;
  padding: 8rem 2rem 6rem;
}

main {
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

header {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.name {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #eee;
  letter-spacing: -0.01em;
}

.subtitle {
  font-size: 0.75rem;
  color: #555;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.about p {
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: #bbb;
}

.label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #444;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
}

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

li {
  font-size: 0.8rem;
  color: #999;
}

.contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.contact a {
  font-size: 0.8rem;
  color: #aaa;
  text-decoration: none;
  transition: color 0.15s;
}

.contact a:hover {
  color: #eee;
}

.contact .sep {
  color: #333;
  font-size: 0.7rem;
}
