*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
body{
    color: #fff;

}



.full-img{
    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: 90vh;
    height: auto;
    margin: 10px;

    /*
    max-width: 400px;
*/
}
.full-img span{
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    cursor: pointer;
    color: yellow;

}









.img-gallery{
    width: 80%;
    margin: 100px auto 50px; 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px
    
}

.img-gallery img{
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    cursor: pointer;
    border: 5px solid  #ffffff;
    border-radius: 20px;
    
}
.img-gallery img:hover{
    transform: scale(0.8) rotate(-5deg);
    border-radius: 20px;
    box-shadow: 0 32px 75px rgb(7, 109, 95);
    transition: 0.5s;
}




@media (max-width: 768px){



    
.full-img img{
    
    height: auto;
    margin: 10px;
    max-width: 300px;

}
    
.img-gallery{
    max-width: 250px;
    overflow: hidden;
    height: fit-content;
    object-fit: cover;
    

}


}