body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #f4f4f4;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 90%;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

h1 {
  margin: 0.5rem 0;
  font-size: 1.8rem;
}

.tagline {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.links a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
}

.contact-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1.2rem;
  background-color: #0077cc;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.contact-button:hover {
  background-color: #005fa3;
}

.icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
}
