@charset "UTF-8";
/* CSS Document */

.galeria {
	width: 100%;
	margin:auto;
	list-style:none;
	padding:30px;
	box-sizing:border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.galeria li {
	margin:5px;
}

.galeria img{ 
		width: 150px;
		height:120px;		
}

/* Estilos de modal*/

.modal {
	display: none
}

.modal:target {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFF;
	padding-bottom:10px;
}

.modal h3 {
	color: #999;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:24px;
	text-align:center;
	margin:15px 0;
	padding-bottom:10px;
	padding-top: 10px;
}

.imagen {
	width: 100%;
	height: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.imagen a{
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #999;
	font-size:30px;
	text-decoration:none;
	margin:0 10px;
}

.imagen a: nth-child(2) {
	margin:0;
	height:100%;
	flex-shrink: 2;
}

.imagen img{
	border-bottom-width:500px;
	height:100%;
	max-width:100%;
	box-sizing:border-box;
}

.cerrar {
	display: block;
	background: #CCC;
	width: 25px;
	height: 25px;
	text-align: center;
	text-decoration: none;
	font-size: 20px;
	color: #999;
	border-radius: 50%;
	line-height: 25px;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
	padding: 20px;
}