/* CSS doc */

/*--------- body block ------------*/

body {
	font-family: 'Comic Sans MS';
	background-color: #00cc00;
	background-image: url('gamble-bg.png');
	font-size: 14px;
	font-weight: normal;
	
}

h3 {
	font-size: 12px;
}

/*--------- header block ------------*/

#header {
	background-repeat: no-repeat;
	padding: 5px 0px 0px 0px;
	
		
}

#header-box {
	max-height: 350px;
	text-align: center;
	padding-bottom: 10px;
}


/*--------- picture block ------------*/

.gamblo {
	font-size: 130px;
	color: #FF0000 ;
	animation: blinker 0.5s linear infinite;
}

@keyframes blinker {
	50% {
		opacity: 0;
	}
}