html,
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, purple), to(#7700ff));
  background: -webkit-linear-gradient(purple 60%, #7700ff 100%);
  background: -moz- oldlinear-gradient(purple 60%, #7700ff 100%);
  background: -o-linear-gradient(purple 60%, #7700ff 100%);
  background: linear-gradient(purple 60%, #7700ff 100%);
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-perspective: 800px;
     -moz-perspective: 800px;
          perspective: 800px;
}
.stage {
  width: 700px;
  height: 500px;
  background: white;
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
  -webkit-box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.6);
     -moz-box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.6);
  -webkit-transform-style: preserve-3d;
     -moz-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 800px;
     -moz-perspective: 800px;
          perspective: 800px;
}
.stage p {
  font-size: 24px;
  font-weight: 400;
  color: tomato;
  margin-left: 20px;
}
.stage h3 {
  font-size: 32px;
  font-weight: 600;
  margin-left: 20px;
}
.stage .card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform-style: preserve-3d;
     -moz-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.stage .card .hole {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 250px;
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
  background: url('img/3dr_mono.png'), url('img/3dr_monobg.jpg');
  background-repeat: no-repeat, repeat;
  -moz-background-size: 100% , 100%;
       background-size: 100% , 100%;
  background-position: 0 30px , 0 0;
  margin: 20px;
  -webkit-transform-style: preserve-3d;
     -moz-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: translate3d(0, 0, 15px);
     -moz-transform: translate3d(0, 0, 15px);
          transform: translate3d(0, 0, 15px);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.6);
     -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.6);
}
.stage .card .hole:nth-child(2) {
  background: url('img/3dr_chihiro.png'), url('img/3dr_spirited.jpg');
  -moz-background-size: 70% , 110%;
       background-size: 70% , 110%;
  background-repeat: no-repeat, repeat;
  background-position: 30px 30px , 0 0;
}
.stage .card .hole:nth-child(3) {
  background: url('img/3dr_howlcastle.png'), url('img/3dr_howlbg.jpg');
  -moz-background-size: 90% , 110%;
       background-size: 90% , 110%;
  background-repeat: no-repeat, repeat;
}
/*# sourceMappingURL=./style.css.map */