@charset "utf-8";
/* CSS Document */
.animated {

  -webkit-animation: move 5s;
  animation: move 5s;
   text-shadow: 2px 2px #F30;
   text-decoration: underline wavy #F30;
    font-size:30px;
   -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: move;
  animation-name: move;
}
@-webkit-keyframes stretch {
from {
   	  letter-spacing: -15px;
	  text-decoration:underline wavy #000;
	  text-shadow: 2px 2px #000;
	 }

  to {
   
	  letter-spacing: 25px;
	 color:#F30;
	 font-weight:900;
  }
  
}	
@keyframes move {
  from {
   	  letter-spacing: -16px;
	  text-decoration:underline wavy #000;
	  text-shadow: 2px 2px #000;
	   }

  to {
   
	  letter-spacing: 100px;
	 color:#F30;
	 font-weight:900;
  }
  
}

 #andi{
	 width:100%;
	 overflow:hidden;
	 padding-bottom: 10px;
	 margin-top:-45px;
	
 }