.img-gallery{ 
    width:80%; 
    margin: 100px auto 50px; 
    display: grid; 
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); 
    grid-gap:30px;  
    

} 
.img-gallery img{ 
    width:100%; 
    cursor:pointer; 
    transition: .4s;
} 
.img-gallery img:hover{
    transform: scale(0.8) rotate(-15deg); 
    border-radius: 20px; 
    box-shadow: 0 32px 75px rgba(68,77,136,.2);
} 
.full-img{ 
    width:100%; 
    height:100vh; 
    background:rgba(0, 0, 0, 0.582); 
    position:fixed; 
    top:0; 
    left:0; 
    display:none; 
    align-items: center; 
    justify-content: center; 
    z-index: 100;
} 
.full-img img{ 
    width: 90%; 
    max-width:500px;
} 
.full-img span{ 
    position:absolute; 
    top:5%; 
    right:5%; 
    font-size:30px; 
    color:#fff; 
    cursor:pointer
} 
.gallery-title, .gallery-house{ 
    display:flex; 
    align-items:center; 
    justify-content: center; 
    margin:0;  
    
} 
.gallery-title h1{ 
    font-family: "Markazi Text", serif; 
    color: rgb(92, 58, 27);  
    font-size: 50px; 
    margin-bottom:6px;
    
} 
.gallery-div{ 
    background-color:  rgb(92, 58, 27); 
    height: 3px; 
    width: 86px; 
    border-radius: 10px;  
    
    margin-bottom:15px;
}  
.gallery-house{ 
    
    padding:0;
}   
.gallery-title{ 
    padding:1px; 
    
} 


