@import 'https://fonts.googleapis.com/css?family=Baloo+Paaji';

.animate-container {
  width: 100%;
  height: 11vh;
  //padding:1vh;
  //align:center;
  position: relative;
 }

.animate-container>div {
  font-family:Arial;    
  font-size: 8vh;
  //padding:1vh;
  //height:9vh;
  text-align: center;
  //text-transform: uppercase;
  color:#787878;  //'#A8A8A8';
  opacity: 0;
  //height: 0px;
  }
.animate-container>div:nth-child(1){
  animation: animation 12s infinite;
  //animation-name
  //animation-duration
  //animation-delay
  //animation-iteration-count
  //animation-direction
  //animation-timing-function
  //animation-fill-mode
  //animation

  
}
.animate-container>div:nth-child(2){
  animation: animation 12s infinite;
  animation-delay: 4s;
}
.animate-container>div:nth-child(3){
  animation: animation 12s infinite;
    animation-delay: 8s;
    //animation-duration: 8s;
}

@keyframes animation {
    0% {opacity: 0; height: auto;}
    16% {opacity: 1;}
    33% {opacity: 0; height: 0px;}
    100% {opacity: 0; height: 0px;}
}

