ul.fallingtextrotator{
font-family: 'Papyrus'; /* font style. Default uses Google fonts */
text-shadow: 2px 2px black, 3px 3px white, 4px 4px white;
font-size: 52px; /* font size of text */
color: #66CCFF;
letter-spacing: 6px;
font-weight: 600;
/*text-transform: lowercase;*/
position: relative;
list-style: none;
margin: 0;
padding: 0;
}

ul.fallingtextrotator > li{
position: absolute;
opacity: 0;
top: 300px;
left: 250px;
position: centre;
-moz-transition: all 0.5s ease-in; /* change 0.3s to reflect desired duration of effect on entire sentence (ie: fade in/out) */
-webkit-transition: all 0.5s ease-in;
-o-transition: all 0.5s ease-in;
-ms-transition: all 0.5s ease-in;
transition: all 0.5s ease-in;
}

ul.fallingtextrotator > li:nth-of-type(even){
color: #66CCFF;
text-shadow: 2px 2px black, 3px 3px white, 4px 4px white;
}


ul.fallingtextrotator > li span[class*="char"]{
display: inline-block;
}

ul.fallingtextrotator > li.dropdown span[class*="char"]{
opacity: 0;
-moz-transform: translateY(300px) rotateZ(120deg); /* drop down and rotate */
-webkit-transform: translateY(300px) rotateZ(120deg);
transform: translateY(300px) rotateZ(120deg);
-moz-transition: all 0.5s ease-in; /* change 0.3s to reflect desired duration of each word/letter dropping down */
-webkit-transition: all 0.5s ease-in;
-o-transition: all 0.5s ease-in;
-ms-transition: all 0.5s ease-in;
transition: all 0.5s ease-in;
}