.row{
    display: flex;
    flex-direction: row;
    padding: 40px 150px;
    background: rgb(255,215,73);
    background: linear-gradient(90deg, rgba(255,215,73,1) 0%, rgba(255,0,0,1) 50%, rgba(255,215,73,1) 100%);

}
 .hed h2{
    
    text-align: center;
    color: white;
    background-color: red;
    padding: 5px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-family: cursive;
    font-weight: 400;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    
}

.mm{
    display: flex;
    flex-direction: column;
}
div.gallery {
    margin: 80px;
    margin: 5px;
    border: 1px solid #ccc;
    width: 200px;
    transition: .5s;
  }
  
  div.gallery:hover {
    transform: scale(1.2);
  }
  
  div.gallery img,video {
    width: 100%;
    height:100%;
  }


  @media (max-width:600px) {
    .row{
        flex-direction: column;
        padding: 20px;
    }
    div.gallery{
        width: 100%;
    }
  }