.main-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 15px;
  /* background-color: red; */
}

.team-member {

  width: 280px;
  height: max-content;
  margin: 15px;
  background: white;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 0 10px var(--neutral);
  transition: all 0.3s linear;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background-size: cover;
  /* background-image: url(../images/thusiru/underwater-bg.webp); */

  /* gap: 12px; */
}
.team-member a {
  color: white;
  text-decoration: none;
}
.team-member li {
  list-style-type: square;
}

.team-member:hover {
  transform: scale(1.05);
  background-color: var(--pacific-cyan);
  color: white;
}

.team-member-section3 {
  opacity: 0;
  /* background-color: var(--alice-blue); */
}

.team-member-section2 {
  word-spacing: 3px;
}
.team-member-section3 li {
  text-align: left;
  font-size: 18px;
  line-height: 1.3;
}

.team-member:hover .team-member-section3 {
  display: block;
  opacity: 1;
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  /* background-color: #16aeb377; */
}


.visible {
  visibility: visible;
}
.editor-page-button {
  cursor: pointer;
  border: none;
  background-color: var(--yale-blue);
  padding: 16px;
  border-radius: 10px;
  color: white;
}
.editor-page-button:hover {
  background-color: paleturquoise;
}

.member-name{
  font-size: 1.4rem;
}

.team-member-title{
  text-align: center;
}