.page {
  max-width: 660px;
}

.items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item {
  width: 200px;
  height: 103px;
  margin-bottom: 30px;
  position: relative;
  background-color: transparent;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  -ms-perspective: 1000px;
  perspective: 1000px;
}

.inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.item.flipped .front {
  transform: rotateY(180deg);
}

.item.flipped .back {
  transform: rotateY(0deg);
}

.item img {
  max-width: 100%;
}

.front {
  cursor: pointer;
}

.front, .back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  background: white;
  z-index: 1;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.back {
  transform: rotateY(180deg);
  z-index: 2;
}

.back a {
  position: absolute;
  width: 80px;
  right: 20px;
  bottom: 8px;
  height: 20px;
}