* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f7f7f8;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  max-width: 700px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p.bio, pre.bio {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.links a {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: #111;
  color: white;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.links a:hover {
  background: #333;
  transform: translateY(-2px);
}

.footer {
  margin-top: 30px;
  font-size: 0.8rem;
  color: #999;
}

@media (max-width: 600px) {
  .container {
    padding: 25px;
  }

  h1 {
    font-size: 2rem;
  }
}
