/* @keyframes fadeIn{
    0%{
        opacity: 0;
        
    }
    100%{
        opacity: 100;
        
    }
}

@keyframes fadeOut{
    0%{
        opacity: 100;
        
    }
    100%{
        opacity: 0;
        
    }
}


body::-webkit-scrollbar {
    display: none;
}

body{
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
  
main{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
    grid-template-rows: auto;

    margin-top: 22px;
}

.imgContainer{
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing:content-box;
    height: 400px;
    transition: all .2s ease;
    
}

img{
    
    height: 100%;
    width: 100%;
    object-fit: cover;
    
    transition: all .2s ease;
}

.photo{
    opacity: 0;
}


.photo:hover{
    height: 102%;
    width: 102%;
}


.bigPictureContainer{
    display: none;
    opacity: 0 ;
    position: fixed;
    top: 0;
    align-items: center;
    justify-content: center;
    z-index: 2;
    height: 100vh;
    width: 100vw;
    transition: all .5s ease;

}

.background{
    
    background-color: white;
    opacity: 99%;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
}

.bigPicture{
    height: 80%;
    width: auto;
    transition: all ease .5s;
} */

/* test new */



body::-webkit-scrollbar {
    display: none;
}

body{
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    
}
  
main{
    columns: 3;
    column-gap: 25px;
    margin-top: 22px;
}

.imgContainer{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    height: auto;
    transition: all .2s ease;
    margin-bottom: 25px;
    
}


img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all .2s ease;
}


