.board-bg {
	padding: 20px 10px;
	display: inline-block;
	background: rgb(30, 30, 30);
	-webkit-border-radius: 3px;
	text-transform: uppercase;
	color: white;
}

table.board {
	width: 100%;
}
table.board tr td th {
	padding: 2px 10px;
}
table.board tr td {
	font-family: 'Inconsolata', monospace;
	letter-spacing: 0.3em;
	-webkit-border-radius: 3px;
	text-transform: uppercase;
	-webkit-box-shadow: inset 2px 0px 4px rgba(0,0,0,0.9), inset -2px 0px 4px rgba(0,0,0,0.9);
	padding-left: 10px;
	padding-right: 10px;
	color: yellow;
}
table.board tr td:before {
	border-top: 0.5px solid rgba(0,0,0,0.4);
	/* this line will be barely visible, but that's how we want it */
	border-bottom: 0.5px solid rgba(255,255,255,0.08);
	position: relative;
	/* you might need to ajust these positions to your layout */
	width: 110%;
	left: -9px;
	top: 11px;
	content: " "; /* we have to set this, otherwise it won't be visible */
	/*display: block;*/
	-webkit-box-shadow: inset 0 -1px 0 rgba(50,50,50,0.7), inset 0 -2px 0 rgba(0,0,0,0.7), inset 2px 0px 4px rgba(0,0,0,0.9), inset -2px 0px 4px rgba(0,0,0,0.9),   /* This one is new and adds a light edge on the bottom*/  0 1px 0px rgba(255,255,255,0.2);
	background: -webkit-gradient(linear, center top, center bottom, color-stop(0.0, rgba(0,0,0, 1)), color-stop(0.05, rgba(30,30,30, 1)), color-stop(1.0, rgba(50, 50, 60, 1)));
}

.blink_me  {
	text-decoration: blink;
	-webkit-animation-name: blink_me;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}

.blink_me2  {
	text-decoration: blink;
	-webkit-animation-name: blink_me2;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}


@-webkit-keyframes blink_me {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}

@-webkit-keyframes blink_me2 {
  from {opacity: 0.0;}
  to {opacity: 1.0;}
}

@media (max-width: 767.98px) {
	table.board tr td {
		letter-spacing: 0em !important;
		font-size:smaller !important;
		padding-left: 1px !important;
		padding-right: 1px !important;
	}
}