@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: 'Old English Text MT';
  font-style: bold;
  font-weight: 200;
  src: local('Old English Text MT'), local('Old English Text MT-Regular'), url(http://themes.googleusercontent.com/static/fonts/monoton/v4/AKI-lyzyNHXByGHeOcds_w.woff) format('woff');
}
/*neon effect*/
p{
  text-align:center;
  font-size:3em;
  margin:20px 0 20px 0;
}

a{
  text-decoration:none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

p:nth-child(1) a{
  color:#900;
  font-family:Old English Text MT;
}
p:nth-child(1) a:hover{
  -webkit-animation: neon1 1.5s ease-in-out infinite alternate;
  -moz-animation: neon1 1.5s ease-in-out infinite alternate;
  animation: neon1 1.5s ease-in-out infinite alternate;
}

p a:hover{
color:#C90202;
}

/*glow for webkit-ket-frames*/
@-webkit-keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff,
              	 0 0 20px  #fff,
             	 0 0 30px  #fff,
             	 0 0 40px  #FD0202,
                 0 0 70px  #FD0202,
              	 0 0 80px  #FD0202,
              	 0 0 100px #FD0202,
              	 0 0 150px #FD0202;
  }
  to {
    text-shadow: 0 0 5px #fff,
                 0 0 10px #fff,
                 0 0 15px #fff,
                 0 0 20px #FD0202,
                 0 0 35px #FD0202,
                 0 0 40px #FD0202,
                 0 0 50px #FD0202,
                 0 0 75px #FD0202;
  }
}


/*glow for mozilla-keyframes*/
@-moz-keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff,
                 0 0 20px  #fff,
                 0 0 30px  #fff,
                 0 0 40px  #FD0202,
                 0 0 70px  #FD0202,
                 0 0 80px  #FD0202,
                 0 0 100px #FD0202,
                 0 0 150px #FD0202;
  }
  to {
    text-shadow: 0 0 5px #fff,
                 0 0 10px #fff,
                 0 0 15px #fff,
                 0 0 20px #FD0202,
                 0 0 35px #FD0202,
                 0 0 40px #FD0202,
                 0 0 50px #FD0202,
                 0 0 75px #FD0202;
  }
}

/*glow*/
@keyframes neon1 {
  from {
    text-shadow: 0 0 10px #fff,
                 0 0 20px  #fff,
                 0 0 30px  #fff,
                 0 0 40px  #FD0202,
                 0 0 70px  #FD0202,
                 0 0 80px  #FD0202,
                 0 0 100px #FD0202,
                 0 0 150px #FD0202;
  }
  to {
    text-shadow: 0 0 5px #fff,
                 0 0 10px #fff,
                 0 0 15px #fff,
                 0 0 20px #FD0202,
                 0 0 35px #FD0202,
                 0 0 40px #FD0202,
                 0 0 50px #FD0202,
                 0 0 75px #FD0202;
  }
}


