 

#gallery {
  padding: 100px 0 100px 0;
}

#gallery .container {
  max-width: 960px;
}

#gallery h1 {
  margin-bottom: 50px;
  text-align: center;
}

#gallery .block {
  width: 70px;
  height: 2px;
  background: #e55d87;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}

#gallery .row {
  margin-top: 30px;
  display: flex;
}

#gallery .columns {
  margin-bottom: 30px;
  flex: 1;
}

#gallery .image {
  background-color: #5a5a5a;
  width: 100%;
  height: 220px;
  margin-left: auto;
  margin-right: auto;
  transition: .5s;
  transition: transform 0.5s;
  border-radius: 30px;
}


  .row {
    display: flex;
  }
  
  .columns {
    flex: 1;
  }
  
  .image {
    background-color: #5a5a5a;
    width: 100%;
    height: 220px;
    margin-left: auto;
    margin-right: auto;
    transition: 0.5s;
    border-radius: 30px;
  }
  
  .image:hover {
    opacity: 0.6;
    transition: 0.3s;
    background-repeat: no-repeat;
    background-position: center;
  }
  #gallery .image:hover {
    transform: scale(1.1); /* Enlarges the image by 10% */
    opacity: 0.6;
  }
  
  .row:nth-child(2) {
    margin-top: 30px;
  }
  body {
    background-color: pink;
    text-align: center;
}