/*Estilos de la galeria*/

.galeria {
	width: 100%;
	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: 150px;
	height: 100px;
}

/*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%;
    z-index:10;
    transition:.3s;
}

.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 {
    height: 100%;
	width: auto;
	border: 7px solid #fff;
	box-sizing: border-box;
}

.cerrar {
    display: block;
    background: rgba(0,0,0,.4);
    width: 30px;
    height: 30px;
    margin: 15px auto;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    padding: 8px;
    /*border-radius: 50%;*/
    line-height: 10px;
    float: right;
    margin-top: 30px;
    margin-right: 49%;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 2px 2px 2px rgba(0,0,0,.3);
    border: solid 1px rgba(0,0,0,.6);
}

.cerrar:hover {
    display: block;
    background: rgba(0,0,0,.4);
    width: 30px;
    height: 30px;
    margin: 15px auto;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    padding: 8px;
    /*border-radius: 50%;*/
    line-height: 10px;
    float: right;
    margin-top: 30px;
    margin-right: 49%;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 2px 2px 2px rgba(0,0,0,.3);
    border: solid 1px rgba(0,0,0,.4);
}



@media (max-width:480px){
.imagen img {
    width: 100%;
    height: auto;	
	border: 7px solid #fff;
	box-sizing: border-box;
}
}