       
  body11 {
  margin: 0px;
  padding: 0;
  background: #333;
}  
      
     
 .container11 {

  margin: auto;
  border: #fff solid 3px;
  background: #fff;
}     
 
--fade-time: 0.15s;

.main-img1 {
  height: 300px;
  margin-top: 5px; 
}

.imgs img {
  width: 100%;
}




.main-img  img{
  margin-top: 5px; 
  width: 100%;
  margin-bottom: 5px; 
}




.imgs {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 10px;
}

.imgs img {
  cursor: pointer;
}


    

/* Fade in animation */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn var(--fade-time) ease-in 1 forwards;
}

/* Media Queries */
@media(max-width: 600px) {
  .imgs {
    grid-template-columns: repeat(4, 1fr);
  }
}