.container-des {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px auto;
  }
  
  .item-des {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .wrapper-des {
    width: 200px;
    height: 200px;
    border: 2px solid black;
    overflow: hidden;
  }
  
  .frame {
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    transition: transform 0.5s ease;
    transform: scale(3); 
  }
  
  .wrapper-des:hover .frame {
    transform: scale(1); 
  }
  
  .description {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    max-width: 200px;
    color:azure;
  }
  
  .frame-1 { background-image: url('https://static.igem.wiki/teams/5149/description/des-l.png'); }
  .frame-2 { background-image: url('https://static.igem.wiki/teams/5149/description/des-i.png'); }
  .frame-3 { background-image: url('https://static.igem.wiki/teams/5149/description/des-f.png'); }
  .frame-4 { background-image: url('https://static.igem.wiki/teams/5149/description/des-t.png'); }

  