/* General Page Style */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: pink;
  color: black;
  line-height: 1.6;
}

/* Header Section */
header {
  text-align: center;
  padding: 30px;
  background: white;
  border-bottom: 3px solid #fc25bb;
}

#main-title {
  color: #fc25bb;
  font-size: 2.5em;
}

header h3 {
  margin: 5px 0 15px;
  color: #333;
}

.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 15px 0;
  border: 3px solid #fc25bb;
}

/* Main Section */
main {
  width: 80%;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

main h2 {
  text-align: center;
  color: #fc25bb;
  margin-bottom: 20px;
}

/* Project Cards */
.project {
  background: #fdf2f8;
  border: 2px solid #fc25bb;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.project:hover {
  transform: scale(1.02);
}

.project h3 {
  margin-top: 0;
  color: #cb11af;
}

.project p {
  margin: 10px 0;
}

/* Highlight Class */
.highlight {
  background: rgba(0, 255, 255, 0.1);
  border-left: 4px solid purple;
  padding: 10px;
}

/* Video Section */
.video {
  margin-top: 10px;
  text-align: center;
}

.video iframe {
  width: 100%;
  max-width: 600px;
  height: 340px;
  border-radius: 8px;
  border: none;
}

/* Links */
.link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #fc25bb;
  color: black;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.link:hover {
  background: #2574fc8c;
  color: white;
}

/* Footer */
footer {
  text-align: center;
  margin: 20px 0;
}

footer a {
  color: #2575fc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
