body {
  background-color: rgba(255, 228, 196, 0.521);
  color:rgb(117, 24, 24);
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

div.gallery {
    border: 1.5px solid rgba(223, 146, 52, 0.521);
    border-radius: 4px;
  }
  
  div.gallery:hover {
    border: 2.5px solid rgba(250, 139, 3, 0.521);
    transform: scale(1.2); /* Scale up to 1.4 on hover */
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 0.3 ease-in-out;
    border-radius: 3px;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
    background-color: bisque;
  }

* {
    box-sizing: border-box;
  }
  
  .responsive {
    padding: 0 6px;
    float: left;
    width: 22%;
    margin: 15px;
  }
  
  @media only screen and (max-width: 768px) {
    .responsive {
      width: 48%;
      margin: 10px 0;
    }
  }
  
  @media only screen and (max-width: 576px) {
    .responsive {
      width: 100%;
      margin: 10px 0;
    }
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }