
  
  .Iam {
    padding-top: 2rem;
    font: bold 40px/50px Montserrat;
    
  }
  
  .Iam p {
    height: 200px;
    float: left;
    margin-right: 0.3em;
  }
  
  
  .Iam b {
    float: left;
    overflow: hidden;
    position: relative;
    height: 200px;
    top: 20px;
  }
  
  .Iam .innerIam {
    display: block;
    
     position: relative;
     /* white-space: nowrap; */
    top: 0;
    left: 0;
    /*animation*/
    -webkit-animation: move 7s;
    animation: move 7s;
    /*animation-iteration-count*/
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    /*animation-delay*/
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
  }
  
  @keyframes move {
    0% {
      top: 0px;
    }
    20% {
      top: -200px;
    }
    40% {
      top: -400px;
    }
   
    
  }
  @-webkit-keyframes move {
    0% {
      top: 0px;
    }
    20% {
        top: -200px;
      }
      40% {
        top: -400px;
      }
      
  }
  /* @keyframes move {
    0% {
      top: 0px;
    }
    20% {
        top: -200px;
      }
      40% {
        top: -600px;
      }
    
      
  } */