body {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  background-color: #0B364A;
}

#button {
  position: relative;
  transform: translateY(-50%);
  top: 50%;
  margin: 0 auto;
  font-size: 4em;
  width: 4em;
  height: 1.5em;
  transform-style: preserve-3d;
  cursor: pointer;
}
#button:hover span {
  background-color: #bebebe;
}
#button:hover span.front {
  background-color: #fff;
}
#button:hover p {
  color: #F50057;
}
#button:hover path {
  fill: #F50057;
}

span {
  width: 4em;
  display: block;
  position: absolute;
  background-color: #C51162;
}
span.front {
  background-color: #F50057;
}

.front {
  transform: translateZ(2em);
  height: 1.5em;
  text-align: center;
}

.left {
  transform: rotateY(-90deg) translateZ(1em) translateX(1em);
  height: 1.5em;
  width: 2em;
}

.right {
  transform: rotateY(90deg) translateZ(3em) translateX(-1em);
  height: 1.5em;
  width: 2em;
}

.top {
  transform: rotateX(90deg) translateZ(1em) translateY(1em);
  height: 2em;
}

.bottom {
  transform: rotateX(-90deg) translateZ(0.5em) translateY(-1em);
  height: 2em;
}

.back {
  transform: rotateY(-180deg) translateZ(0em);
  height: 1.5em;
}

p {
  padding: 0;
  margin: 0;
  line-height: 96px;
  text-align: center;
  color: #fff;
  font-family: 'Raleway';
  font-size: 32px;
  display: inline-block;
  vertical-align: middle;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  color: #bebebe;
  font-family: 'Raleway';
  margin-top: 15px;
  margin-left: 15px;
  position: absolute;
  display: block;
  text-decoration: initial;
  float: left;
}
a span {
  color: #fff;
  width: auto;
  background-color: transparent;
  position: relative;
  display: initial;
}

svg {
  display: inline-block;
  vertical-align: middle;
  width: .55em;
  height: .55em;
}
