body {
  height: 100vh;
  overflow: hidden;

}

.gallery-container {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.gallery {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 200px;
  perspective: 800px;
  transform-style: preserve-3d;
  transform-origin: center center;
  transform: translateY(-50%);
}

.frame {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  border-radius: 4px;
  position: relative;
  height: 100%;
  width: 200px;
  background: white;
  transform-style: preserve-3d;
  transform-origin: center center;
  cursor: pointer;
  overflow: hidden;
background: radial-gradient(#fff, #999999);
}
.frame .image {
  display: block;
  position: relative;
  height: auto;
  width: 90%;
  pointer-events: none;
}
.frame .info {
  color: white;
   text-shadow:
    1px 1px 2px black,
    0 0 1em black,
    0 0 0.2em black;
  font-size: 1.2em;
}

#codepen-link {
  color: #02a1fe;
   text-shadow:
    1px 1px 2px white,
    0 0 1em white,
    0 0 0.2em white;
  position: absolute;
  bottom: 20px;
  right: 30px;
  transition: all 0.25s;
}
#codepen-link:hover {
  opacity: 0.8;
  color: #f10e0b;
 
}