/* *{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'poppins', sans-serif;
} */
.galeria{
	width: 100%;
	/* min-height: 100vh; */
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 5px;
}
.gallery{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-gap: 30px;
}
.gallery img{
	width: 100%;
	border-radius: 20px;
	box-shadow: 3px 7px 15px #000;
}

@media (max-width:480px) {
	.gallery{
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}
}