body{
	background: #F4F6F6;
	margin: 0;
	font-family: monospace;
	
}
inicio{
	display: flex;
	text-align: center;
}

h1{
	color: #fff;
	text-align: center;
}

.galeria{
	width: 80%;
	margin: auto;
	list-style: none;
	padding: 20px;
	box-sizing: border-box;
	
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}


.galeria li{
	margin: 5px;
}

.galeria img{
	width: 200px;
	height: 200px;
}

/*Estilos 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%;
}

.modal h3{
	color: #fff;
	font-size: 30px;
	text-align: center;
	margin: 15px 0;
}

.imagen{
	width: 100%;
	height: 80%;
	
	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: 500px;
	height: 100%;
	
	border: 7px solid #fff;
	box-sizing: border-box;
}

.cerrar{
    width: 50px;
	height: 50px;
	color: azure;
	font-weight: bold;
	font-size: 35px;
	font-family: monospace;
	line-height: 50px;
	text-align: center;
	background: rgba(0,0,0,0.7);
	border-radius: 50%;
	cursor: pointer;
	
	position: absolute;
	right: 10px;
	top: 10px;
}
.inicio a{
	width: 50px;
	height: 50px;
	color: azure;
	font-weight: bold;
	font-size: 35px;
	font-family: monospace;
	line-height: 50px;
	text-align: center;
	background: rgba(0,0,0,0.7);
	border-radius: 50%;
	cursor: pointer;
	
	position: absolute;
	left: 10px;
	top: 10px;
}
