body {
  margin: 0;
  padding: 30px;
  font-family: Arial, sans-serif;
  background: #fafafa;
  text-align: center;
}

.container {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  max-width: 400px;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.avatar {
  width: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #e0e0e0;
}

.bio {
  color: #444;
  margin-bottom: 1.5rem;
}

.link {
  display: block;
  margin: 10px 0;
  padding: 1rem;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s;
  font-size: 20px;
}

.link-inline {
  display: inline-block;
  margin: 10px;
  padding: 20px;
  background: #007bff;
  color: white;
  text-decoration: none;
  font-size: 20px;
  border-radius: 50%;
  transition: background 0.3s;
}

.link:hover, .link-inline:hover {
  background: #0056b3;
}

.title {
  margin-bottom: 1rem;
}

.album {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.album img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}