.contenedor-galeria{
	display:flex;
	width:100%;
	justify-content: space-around;
	flex-wrap:wrap;
	margin:auto;
	margin-top:20px;
	background:#CCC;
	}
	
.galeria__img{
	width:180px;
	height:100px;
	border-radius:5%;
	margin:10px;
	object-fit: cover;
	cursor:pointer;
	filter: brightness(70%);
	}
	
	.galeria__grande{
	width:100%;
	max-width:350px;
	height:350px;
	border: 10px solid #EEE;
	}
	
	
.galeria__img:hover{
filter: brightness(100%);
	}
