/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #ffbebe, #6eadff);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Profile Card */
.profile-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  width: 90%;
  text-align: center;
  transition: transform 0.3s ease;
}


/* Profile Picture */
.profile-pic {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #000000;
}

/* Name */
.profile-card h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 8px;
}

/* Bio */
.profile-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.social-links img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s;
}

.social-links a:hover img {
  transform: scale(1.1);
}

/* Info Section */
.info-section {
  text-align: left;
}

.info-section h3 {
  font-size: 18px;
  color: #444;
  margin-bottom: 10px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 4px;
}

.info-section ul {
  list-style: none;
  margin-bottom: 20px;
}

.info-section li {
  font-size: 15px;
  margin: 6px 0;
  color: #333;
}

.info-section strong {
  color: #000000;
}
