
.galeriaE {
    width: 90%;
    margin: auto;
    list-style: none;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.galeriaE img {
    width: 230px;
    height: 230px;
}

* {
    box-sizing: border-box;
}

.galeriaE li {
    margin: 5px;
}

/*Estilos de modal*/
.modalE {
    display: none;
}

.modalE:target {
    display: block;
    position: fixed;
    background: rgba(255,255,255, 0.9);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    z-index: 1;
    padding-top: 100px;
}

.modalE h3 {
    color: black;
    font-size: 30px;
    text-align: center;
    margin: 15px 0;
    margin-top: 2%;
}

.numbertextE {
    color: mediumslateblue;
    font-size: 20px;
    padding: 10px 450px;
    position: absolute;
   
}

.imagenE {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagenE a {
    color: mediumpurple;
    font-size: 40px;
    text-decoration: none;
    margin: 0 10px;
}

.imagenE a:nth-child(2) {
    margin: 0;
    height: 100%;
    flex-shrink: 2;
}

.imagenE img {
    width: 500px;
    height: 100%;
    max-width: 100%;
    border: 7px solid white;
    box-sizing: border-box;
}

.cerrarE {
    display: block;
    background: darkred;
    width: 25px;
    height: 25px;
    margin: 3px auto;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    color: white;
    padding: 5px;
    border-radius: 50%;
    line-height: 18px;
}
