
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #f9f9f9, #e0eaff);
  color: #222;
  text-align: center;
}


header {
  background: linear-gradient(90deg, #4e54c8, #8f94fb);
  color: white;
  padding: 3rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  opacity: 0.95;
}


main {
  padding: 3rem 1rem;
}

.about, .contact {
  background: white;
  margin: 2rem auto;
  max-width: 600px;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about:hover, .contact:hover {
  transform: translateY(-5px);
}


.profile-pic {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 20%;
  margin: 1.2rem 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  border: 4px solid #8f94fb;
}


h2 {
  color: #4e54c8;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

h3 {
  margin-top: 1rem;
  color: #333;
}


a {
  color: #4e54c8;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}
