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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

main {
  max-width: 600px;
  margin: 80px auto;
  padding: 0 24px;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.bio {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #333;
}

.links {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.links a {
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #999;
  padding-bottom: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.links a:hover {
  border-bottom-color: #222;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 4px;
}

figcaption {
  margin-top: 8px;
  font-style: italic;
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  main {
    margin: 40px auto;
  }

  h1 {
    font-size: 1.6rem;
  }
}
