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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #fafafa;
  color: #222;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
  padding: 2rem;
}

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

ul {
  list-style: none;
}

.links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.links a {
  color: #222;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.2s;
}

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

.contact li {
  margin-bottom: 0.5rem;
}

.contact a {
  color: #555;
  text-decoration: none;
}

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

.bio {
  margin-top: 2rem;
  max-width: 400px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.bio p {
  margin-bottom: 0.75rem;
  line-height: 1.5;
  color: #444;
}

.bio a {
  color: #222;
  text-decoration: underline;
}
