/*#btn--yp {
  box-sizing: content-box;
  position: fixed;
  z-index: 9;
  bottom: 1em;
  right: 1em;
  border: solid 1em transparent;
  width: 4.625em;
  height: 3.25em;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/2017/icon-yp.svg) 50%/cover content-box;
  font: 16px/ 1.25 trebuchet ms, sans-serif;
  text-indent: 200vw;
  text-shadow: none;
  filter: grayscale(1) drop-shadow(0 0 1px #e8e0e0);
  transition: .5s;
  white-space: nowrap;
}
#btn--yp:before {
  box-sizing: inherit;
  position: absolute;
  left: 0;
  bottom: 100%;
  margin: 1em -.5em;
  padding: .5em;
  width: 100%;
  border-radius: 5px;
  background: #e8e0e0;
  color: #000;
  text-align: center;
  text-decoration: none;
  text-indent: 0vw;
  white-space: normal;
  animation: float 1s ease-in-out infinite alternate;
  content: attr(data-txt);
}
#btn--yp:hover, #btn--yp:focus {
  outline: none;
  filter: grayscale(0) drop-shadow(0 0 1px crimson);
}

@keyframes float {
  to {
    transform: translateY(0.75em);
  }
}
*/
body {
  overflow: hidden;
  position: fixed;
  margin: 0;
  height: 100%;
  width: 100%;
  /*height: 100vh;*/
  perspective: 25em;
  background-color: #ffcc00 ;
  background-position: fixed;
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/2017/17_03_bg_xmas_spices.jpg");
  /*background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/2017/17_03_bg_xmas_spices.jpg");/* 50%/cover gainsboro;
  /* background-blend-mode: overlay; */
  font: 8vmin cookie, cursive;
  text-shadow: 1px 1px 1px #fff, 2px 2px 2px currentcolor;
  text-align: center;
}
body:after {
  left: 0;
  /*transform: translate(calc(50vw - 50%));*/
  content: "drag me!";
}

div, :after {
  position: absolute;
}

.cube {
  position: fixed;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  transform: rotateX(-25deg) rotateY(-40deg);
}
.cube__face {
  margin: -2em;
  width: 4em;
  height: 4em;
  backface-visibility: hidden;
  transform: var(--rot) translateZ(2em);
  box-shadow: inset 0 0 0 3px;
  background: var(--img) 50%/cover gainsboro;
  background-blend-mode: overlay;
  color: deeppink;
  line-height: 4em;
  filter: sepia(0.3);
}
.cube__face:nth-child(1) {
  --rot: rotateY(0deg);
  --img: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/2017/17_03_ginger_sq.jpg");
  --txt: ginger;
}
.cube__face:nth-child(2) {
  --rot: rotateY(90deg);
  --img: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/2017/17_03_anise_sq.jpg");
  --txt: anise;
}
.cube__face:nth-child(3) {
  --rot: rotateY(180deg);
  --img: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/2017/17_03_nutmeg_sq.jpg");
  --txt: nutmeg;
}
.cube__face:nth-child(4) {
  --rot: rotateY(270deg);
  --img: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/2017/17_03_cinnamon_sq.jpg");
  --txt: cinnamon;
}
.cube__face:nth-child(5) {
  --rot: rotateX(90deg);
  --img: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/2017/17_03_vanilla_sq.jpg");
  --txt: vanilla;
}
.cube__face:nth-child(6) {
  --rot: rotateX(-90deg);
  --img: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/2017/17_03_cloves_sq.jpg");
  --txt: cloves;
}
.cube__face:after {
  left: 0;
  width: inherit;
  content: var(--txt, "");
}