body{
    margin:0px;
    background:#fcefa7;
}
/************** MENÚ ********************/
a{
    text-decoration:none;
    text-align:none;
    color:#000;
    font-size: 1.2em;
}
.cont-menu{
    width:100%; /*lo que abarca en la pantalla */
    font-family:'Lato', sans-serif;
    align:left;
    font-size: 15px;
    background:#fde870;
    height:100%;

}
.menu{
   position:relative;
   list-style:none;
}
.menu ul{
    list-style:none;
}
.menu li a{
    color:#203abb;
    display:block;
    padding: 10px 20px;
    margin-right:10px;
    margin-left:-30px;

}
.menu li a:hover{
    background:#f3d219;
    color:#fff;
}
.menu ul li a{

    color: #203abb;
}
.menu. activado > a{ /* cuando picho se queda marcado*/
    background:#203abb;
    color:#000;
}
.linea_verde{
	background-color:203abb;
	height:15px;
	margin-top:15px;
}

/************* GALERIA *******************/

/*Estilos de la galeria*/

.galeria {
    width: 90%;
    margin: auto;
    list-style: none;
    padding: 20px;
    box-sizing: border-box;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.galeria li {
    margin: 10px;
}

.galeria img {
    width: 300px;
    height: 200px;
}

/*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%;
}

.modal h3 {
	font-family:Arial, Helvetica, sans-serif;
    color: #fff;
    font-size: 15px;
    text-align: center;
    margin: 5px 0;
}

.imagen {
	margin-top:20px;
    width: 100%;
    height: auto;

    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: 1000px;
    height: 100%;
    max-width: 100%;
    border: 5px 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: 5px;
    border-radius: 50%;
    line-height: 25px;
}
