body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #4af9c473;
}
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.header img {
  border-radius: 200px;
  width: 170px;
  height: 250px;
}
.header h1 {
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  color: #333;
}
.header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: normal;
  color: #666;
}
.bio {
  font-size: 16px;
  line-height: 1.5;
  color: #191717;
}
.bio p {
  margin: 0;
  margin-bottom: 10px;
}
.bio h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: bold;
  color: #000000ab;
}
.social-links {
  display: flex;
  margin-top: 20px;
}
.social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
}
.social-links a:hover {
  color: #333;
}
.social-links img {
  width: 20px;
  height: 20px;
}
a {
  color: #044973;
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  color: #040442;
}