body{
    background: #000;
    margin: 0;
    font-family: monospace;
}

.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: 5px;
}
.galeria img{
    display: flex;
    width: 250px;
    height: 330px;
    list-style: none;
    border-radius: 4px;
}


/* Estilos del modal */

.modal{
    display: none;
}
.modal:target{
    display: block;
    position: fixed;
    background: rgba(0,0,0,0.9);
    border-radius: 5px;
    top: 0;
    margin-left:auto;
    width: 100%;
    height: 100%;
}
.imagen{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.imagen a{
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    margin: 0 10px;
}


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

.imagen img{
    width: 250px;
    height: 350px;
    max-width: 100%;
    border: 5px solid #fff;
    box-sizing: border-box;
    
    
}
.cerrar{
    display: block;
    background: #fff;
    width: 25px;
    height: 25px;
    margin: 1px auto;
    text-align: center;
    text-decoration: none;
    font-size: 25px;
    color: #000;
    padding: 5px;
    border-radius: 50%;
    line-height: 25px;    
    
}



