.team {
  background: linear-gradient(
    93deg,
    #f65773 19.2%,
    #a17ebd 51.24%,
    #118ea6 79.4%
  );
  background-clip: text;
  text-align: center;
  font-family: League Spartan;
  font-size: 128px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.group-photo-div {
  display: flex;
  justify-content: center;
}

.group-photo-img {
  width: 100%;
  border-radius: 16px;
}
.whole-team-page {
  margin-left: 150px;
  margin-right: 150px;
}

.members-title {
  margin-top: 100px;
  font-size: 40px;
  font-family: "Roboto Mono", monospace;
}

.members-title-description {
  font-size: 30px;
  font-family: "Roboto Mono", monospace;
}

.team-description-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.team-description-div {
  text-align: center;
  margin: 0px;
}

.team-description-image {
  width: 95%;
  height: 430px;
  object-fit: cover;
  margin: 0px;
  margin-bottom: 20px;
  border-radius: 16px;
}

.prof-titles {
  margin-top: 20px;
}

.team-description-div {
  position: relative;
}

.team-description {
  display: none; /* Initially hide the description */
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background color */
  padding: 20px;
  color: white;
  text-align: center;
}

.team-description-div:hover .team-description {
  display: block; /* Show the description when hovering */
}

.team-member-name {
  font-size: 20px;
  font-weight: bold;
}
.team-member-description {
  width: 90%;
  padding-left: 5%;
  text-align: justify;
  font-size: 90%;
  line-height: 20px;
}
