.text {
    position: absolute;
      width: 600px;
      left: 50%;
      margin-left: -300px;
      height: 40px;
      top: 50%;
/*      margin-top: -30px;*/
}

.text > h2 {
    font-size:40px;
    display: inline-block;
    padding:0;
}


.word {
  position: absolute;
  width: 440px;
  opacity: 0;
  margin-top:-4px;
  margin-left:5px;
}

.letter {
  display: inline-block;
  position: relative;
  float: left;
  transform: translateZ(25px);
  transform-origin: 50% 50% 25px;
}

.letter.out {
  transform: rotateX(90deg);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
  transform: rotateX(-90deg);
}

.letter.in {
  transform: rotateX(0deg);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

p {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
