@charset "utf-8";
/* CSS Document */

.galeria {
	width: 90%;
	margin: auto;
	list-style: none;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.galeria img {
	height: 100px;
}

.galeria li {
	margin: 5px;
}

.galeria_item {
	cursor: pointer;
}

.modo {
	position: fixed;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	top: 0;
	left: 0;
	
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modo_img {
	width: 80%;
	max-height: 100%;
}

.modo_boton {
	width: 50px;
	height: 50px;
	cursor: pointer;
	
	position: absolute;
	right: 10px;
	top: 10px;
}