#txt{
   display: flex;
   align-items: center;
   justify-content: flex-end;
   flex: 1;
   font-family: sans-serif;
   letter-spacing: 3.5px;
   font-size: 46px;
   font-weight: 700;
   position: relative;
   transform-style: preserve-3d;
   perspective: 100px;
   -webkit-transform-style: preserve-3d;
   -webkit-perspective: 100px;
 }

 #txt>b:nth-child(2){
    animation-delay:.25s;
 }
 #txt>b:nth-child(3){
    animation-delay:.5s;
 }
 #txt>b:nth-child(4){
    animation-delay:.75s;
 }
 #txt>b:nth-child(5){
    animation-delay:1s;
 }
 #txt>b:nth-child(6){  
    animation-delay:1.25s;
 }
 #txt>b:nth-child(7){
    animation-delay:1.5s;
 }
 #txt>b:nth-child(8){
    animation-delay:1.75s;
 }
 @keyframes getUp{
    10%,50%{
       transform:rotateX(0);
    }
    0%,60%,100%{
       transform:rotateX(-85deg);
    }
 }