
div.imagePopup {
    border: 1px solid #ccc;
 
}

div.galeria{
  text-align: center;
  display: flex;
}

div.gallery {
text-align: center;
    flex: 1 1 0;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

div.gallery:hover {
  //  border: 3px solid #777;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.8), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
}

div.gallery img {

    width: 100%;
    height: auto;
}



div.desc {
    padding: 15px;
    text-align: center; 
}

* {
    box-sizing: border-box;
}

.responsive {
    
    //float: left;
   
    width: 32.0%;

    display: inline-block;
    text-align: center;
    background-color: #FFFFFFBB;

    margin:0 auto;

    clear: left;
    
}

@media only screen and (max-width: 700px){
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px){
    .responsive {
        width: 100%;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}