
.gallery1{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 10px;
	padding: 10px;
}
.galary{
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border: 2px #0a010a;
	border-radius: 5px;
}
.galary img{
	max-width: 100%;
	max-height: 100%;

}
.galary:hover{
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	transform: scale(1.1);
	transition: all 0.3sec ease;
	
}