html {
    overflow-y: scroll;
}

body {
	/*
    font-family: sans-serif;
    margin: 0; padding: 0;
	*/
}

.masonry-gallery-item-container {
    float: left;
    position: relative;
    line-height: 1em;	
}


.masonry-grid-sizer { width: 33.3%; }
.masonry-gallery-item-container { width: 33.3%; }

.masonry-gallery-item{
	padding:7px;
}


@media screen and (max-width: 1224px) {
  /* 10 columns for larger screens */
  .masonry-grid-sizer { width: 33.33%; }
  .masonry-gallery-item-container { width: 33.33%; }
}

@media screen and (max-width: 720px) {
  /* 10 columns for larger screens */
  .masonry-grid-sizer { width: 50%; }
  .masonry-gallery-item-container { width: 50%; }
}

@media screen and (max-width: 480px) {
  /* 10 columns for larger screens */
  .masonry-grid-sizer { width: 100%; }
  .masonry-gallery-item-container { width: 100%; }
}

.masonry-image{
    max-width: 100%;
    margin: 0;
    display: block;
}

.masonry-image:after {
    clear:both;
}

.masonry-item-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
    text-decoration: none;
    color: #fff;
    display: none;
}

.masonry-item-overlay .title {
    text-align: center;
    font-size: 30px;
}

.masonry-item-overlay .description {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.80);
    width: 100%;
    margin: 0;
}

.masonry-item-overlay .description p {
    margin: 20px;
}

.masonry-gallery-item-container:hover .masonry-item-overlay {
    display: block;
}