.flexbox {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .content{
    height: 160vw;
  }

  .styled-title {
    font-family: 'Lucida Handwriting', cursive; /* 使用系统自带的花体字体 */
    color: white; /* 字体颜色为白色 */
    font-size: 2.5vw; /* 字体大小可以根据需求调整 */
    text-shadow: 2px 2px 0px #157A8C, /* 蓝色边框效果 */
                 -2px 2px 0px #157A8C, 
                 2px -2px 0px #157A8C, 
                 -2px -2px 0px #157A8C;
  }

  .title1{
    width: 100%;
    display: flex;
    justify-content: center;
    height: 6vw;
    padding-top: 5vw
  }

  .title2 {
    width: 100%;
    height: 10vw;
    position: relative;
  }

  .leader{
    width: 100%;
    height: 30vw;
  }



  .team-container {
    display: flex;
    gap: 15vw; /* 增加卡片间距 */
  }
  
  .card {
    width: 16vw;
    height: 23vw;
    perspective: 1000px;
    position: relative;
    background-color: rgb(244,255,252);
    border: none;
  }
  
  .card .front, .card .back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s, opacity 0.3s ease;
    background-size: cover;
    background-position: center;
  }
  
  .card .front {
    background-image: url('https://static.igem.wiki/teams/5449/team/card.png');
  }
  
  .card .profile-img {
    width: 8vw;
    height: 8vw;
    border-radius: 50%;
    transition: transform 0.6s;
    margin-bottom: 20px; /* 图片与名字的距离 */
    margin-top: -20px; /* 将图片稍微向上移动 */
    object-fit: cover;
  }
  
  .name {
    margin-top: 2vw; /* 让名字向下移动 */
    font-size: 1.5vw;
    font-weight: bold;
  }
  
  .card .back {
    background-image: url('https://static.igem.wiki/teams/5449/team/back.png');
    transform: rotateY(180deg);
    opacity: 0;
    padding: 20px;
    text-align: center;
    overflow-y: auto;
  }
  
  .card:hover .profile-img {
    transform: rotate(360deg);
  }
  
  .card.flipped .front {
    transform: rotateY(180deg);
    opacity: 0;
    visibility: hidden;
  }
  
  .card.flipped .back {
    transform: rotateY(0deg);
    opacity: 1;
    overflow-y: auto;

  }
  

  .description {
    margin-top: 3vw;
    font-size: 1vw;
    color: #333;
  }

  .card p{
    font-size: 1vw;
    color: #333;

  }
  
  footer .container .fac .flexbox p{
    margin-left: 0vw !important;
}