div.gallery {
    border-radius: 15px; 
    overflow: hidden;
    max-height: auto;
    text-align: center;
}

  
div.gallery img {
    width: 100%;
    max-height: 250px;
    height: auto;
    object-fit: contain;
    border-radius: 100px; 
    text-align: center;
    padding: 10px 0px 10px 0px;
}
  
div.desc {
    padding: 5px 0px 5px 0px;
    text-align: center;
    color:#1bff80;
    font-size: 25px;
    text-align: center;
}


* {
    box-sizing: border-box;
}
  
.responsive {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 40px 10px;
}

.item {
    width: 100px;
    height: 50px;
    background: lightblue;
    text-align: center;
    line-height: 50px;
}
  
@media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
}
  
@media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
}
  
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}