/*Type your css here*/


body
{
	text-align: center;
}
#game_container
{
	text-align: center;
}
#board
{
	border: 3px solid;
	border-radius: 10px;
	color: red;
	box-shadow: inset 0 0 20px 10px black, 0 0 10px 10px red;
}
.snake
{
	font-size: 40px;
	font-weight: bold;
	color: green;
}
.img-container
{
	text-align: center;
	display: block;
}

#score_text
{
	font-family: "Permanent Marker";
	font-size: 50px;
	font-weight: bold;
}
#reset_button
{
	font-size: 25px;
	width: 100px;
	height: 50px;
	border: 6px solid;
	border-radius: 20px;
	cursor: pointer;
}