html {
    scroll-behavior: smooth;
}

.adjust {
    margin-top: -100px;
}

.cid-sPuSvqkokO h3 {
    text-align: center !important;
}

.cid-sPuVk47BAx h4{
    text-align: center !important;
}

.members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.members-space {
    padding: 20px;
}

.members-space2 {
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
}

.center-vertical {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 170;
}

.center-vertical-back {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 170px;
}

 /* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
 .flip-card {
    background-color: transparent;
    border-radius: 25px;
    width: 170px;
    height: 170px;
    perspective: 1000px;
    text-align: center;
  }
  
  /* This container is needed to position the front and back side */
  .flip-card-inner {
    position: relative;
    border-radius: 25px;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  /* Do an horizontal flip when you move the mouse over the flip box container */
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  /* Position the front and back side */
  .flip-card-front, .flip-card-back {
    border-radius: 25px;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    vertical-align: middle;
  }
  
  /* Style the front side (fallback if image is missing) */
  .flip-card-front {
    color: black;
    border: 2px solid black;
  }
  
  /* Style the back side */
  .flip-card-back {
    background-color: #3E8043;
    color: white;
    transform: rotateY(180deg);
  }
  
  .flip-card-back p {
    margin-bottom: 0px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .topmd {
    padding-top: 80px;
  }

 
 .boardmembers li{
    list-style-type: none;
    margin-left: -30px;
    text-align: center;
  }

  .boardmembers li:nth-child(n+2){
    margin-top: 30px;
  }