img {
    width: 500px;
    height: 200px;
    object-fit: cover;
}
/*
.showcase-text {
    
    margin-top: -100px;
}
*/

.pX {
    padding-left: -100px;
}


.img-gallery {
    object-fit: cover;
    width: 80%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 60px;
}
.img-gallery img {
    width: 100%;
    object-fit: cover;
    
    cursor: pointer;
}
.img-gallery img:hover {
    transform: scale(0.8) rotate(-15deg);
    border-radius: 20px;
    box-shadow: 0 32px 75px rgba(67, 77, 136, 0.2);

}


.full-img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    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;
    height: 90%;
    object-fit: cover;
  
}

.full-img span{
    position: absolute;
    top: 15%;
    right: 5%;
    font-size: 30px;
    cursor: pointer;
    height: 25px;
    width: 25px;
 
    
    color: red;
}