#cuerpo{
    width: 100%;
    display: flex;
   flex-wrap: wrap; 
    
    
}
/*-------------------*/
#cuerpo h1 {
	color: #C6C5F3;
	text-align: center;
}

/*------grupos-------------*/
#cuerpo #grupo1{
    background: #444;    
    width: 50%;
    margin: 0px;
    float:left;
	display: inline-block;
     border: 1px solid #ffffff;
    
}

#grupo2{
    background: #444;    
    width: 50%;
    margin: 0px;
    float: left;
	display: inline-block;
     border: 1px solid #ffffff;
    
}

#grupo3{
    background: #444;    
    width: 100%;
    margin: 0px;
    display: inline-block; 
     border: 1px solid #ffffff;
}

/*----Estilos de la galerias----*/

#cuerpo .galeria,.galeria1 {
	width: 100%;
	margin: auto;
	list-style: none;	
	box-sizing: border-box;	
	display: flex;
	flex-wrap: wrap;
    justify-content: center; 
	
}

#cuerpo .galeria li,.galeria1 li {
	margin: 2px;
}

#cuerpo .galeria img,.galeria1 img {
	width: 150px;
	height: 100px;
}
#cuerpo .galeria img:hover,.galeria1 img:hover{
    border: 1px solid #ffffff;
}



/*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: 1000px; */
    height: 100%;
}

.modal h3 {
	color: #fff;
	font-size: 30px;
	text-align: center;
	margin: 15px 0;
}

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

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

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

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

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


/*--------tamaño para celular-------*/
@media only screen and (max-width: 700px) {

    #cuerpo .galeria img,.galeria1 img {
	width: 95%;
	height: 100px;
    }
    
    #cuerpo #grupo1 h1{
    font-size: 13px;    
    
    }
    
    #cuerpo #grupo2 h1{    
    font-size: 13px;     
    }
    
    #cuerpo #grupo3 h1{    
    font-size: 13px;     
    }
    
    .imagen {	
	height: 70%;	
    }
    
    .imagen a {	
	font-size: 25px;	
	margin: 0 5px;
    }
    
    .cerrar {	
	width: 20px;
	height: 20px;
	margin: 5px auto;	
	font-size: 15px;
    line-height: 20px;
    }
    
}