@font-face {
	font-family: 'LeagueGothicRegular';
 	src: url('fonts/League_Gothic-webfont.eot');
	src: url('fonts/League_Gothic-webfont.eot?#iefix') format('embedded-opentype'),
   	     url('fonts/League_Gothic-webfont.woff') format('woff'),
	     url('fonts/League_Gothic-webfont.ttf') format('truetype'),
	     url('fonts/League_Gothic-webfont.svg#LeagueGothicRegular') format('svg');
		font-weight: normal;
		font-style: normal;
}


h1  {
	font-family:"LeagueGothicRegular";
	margin-top:5px;
	margin-bottom:5px;
	font-weight: normal;
	font-size: 290px;
}

body {
	background-image: url('images/tom.png');

}

.blinking{
    animation:blinkingText 1.2s infinite;
}
@keyframes blinkingText{
    0%{     color: #ff0000;    }
    49%{    color: #00cc00; }
    60%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: #ff0000;    }
}
