body {
	background: #444;
	margin: 0;
	font-family: monospace;
}

/*Estilos de la galería*/

.galeria {
	/*width: 0%;
	margin: auto;*/
	list-style: none;
	padding: 5px;
	/*justify-content: space-around;*/
}

.galeria li {
	margin: 0;
	
}

.galeria img {
	width: 200px;
	height:  150px;

}

/* Estilos del modal*/

.modal {
	display: none;
}

.modal:target {
	display: block;
	position: fixed;
	background: rgba(0,0,0,0.8);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

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

.imagen a {
	color: #fff;
	font-size: 40px;
	text-decoration: none;
	margin: 0 10px;
}

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

.imagen img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	border: 7px solid #fff;
	box-sizing: border-box;
}

.cerrar {
	display: block;
	background: #fff;
	width: 70px;
	height: 25px;
	margin: 10px auto;
	text-align: center;
	text-decoration: none;
	font-size: 25px;
	color: #000;
	padding: 5px;
	border-radius: 50%;
	line-height: 25px;
}