<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Masonry grid */
.masonry {
  transition: all .5s ease-in-out;
  column-gap: 10px;
  column-fill: initial;
  width:100%;
  margin-bottom:20px;
}

/* Masonry item */
.masonry .brick {
  margin-bottom: 10px;
  display: inline-block; /* Fix the misalignment of items */
  vertical-align: top; /* Keep the item on the very top */
  position:relative;
}

.brickimg{position:relative;z-index:1;overflow:hidden;}
.brickover{width:100%;height:100%;background:rgba(0,0,0,0.5);color:#fff;position:absolute;top:100%;left:0px;padding:10px;}
.brickimg:hover .brickover{top:50%;}
/* Masonry image effects */
.masonry .brick img {
  width:100%;
  border:0px solid #fff;
  transition: all .5s ease-in-out;
  backface-visibility: hidden; /* Remove Image flickering on hover */
  border:5px solid #fff;
}

.masonry .brick:hover img {
  border:5px solid #ebebeb;
  /*opacity: .75;*/
  box-shadow:0px 0px 9px #666;
}



/* Masonry on tablets */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .masonry {
    column-count: 2;
  }
}

/* Masonry on big screens */
@media only screen and (min-width: 1024px) {
  .desc {
    font-size: 1.25em;
  }

  .intro {
    letter-spacing: 1px;
  }

  .masonry {
    column-count: 2;
  }
}</pre></body></html>