body {
  text-align: center;
}

.selection-box {
  width: 300px;
  height: 300px;
  display:inline-block;
  margin: 20px;
}

.selection-box:hover {
  box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
  transform: translate(-2px, -2px);
  transition: all .2s ease 0s;
  cursor: pointer;
}

/* .selection-box:hover .background {
  filter: brightness(1.2) blur(1px);
} */

.selection-box-contents {
  width: 100%;
  height: 100%;
  position: relative;
}

.selection-box .background {
  width: 100%;
  height: 100%;
}

.selection-box .title {
  opacity: 0;
  position: absolute;
  padding-top:35%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:100%;
  height:100%;
  font-size: 28px;
  text-transform: uppercase;
  transition: all .2s ease 0s;
  backface-visibility: hidden;
}

.selection-box .title:hover {
    opacity: 1;
    transition: all .5s ease 0s;
  }

@media (pointer: coarse) {
  .selection-box .title {
      opacity: 1;
    }
}

/* MASONRY GRID */
.art-grid{
  width: 100%;
  margin: 0 auto;
}

.art-grid-item {
  width: 300px;
  margin-top: 20px;
}

.art-image{
  max-width:100%;
  max-height:100%;
}

@media (max-device-width: 600px){
  .selection-box {
    width: 600px;
    height: 600px;
  }
  .selection-box .title {
    font-size: 78px;
  }
}
