@font-face {
	font-family: 'Londrina Solid';
    src: url('fonts/Londrina_Solid/LondrinaSolid-Regular.ttf') format('truetype');
	font-weight: 900;
}
@font-face {
	font-family: 'Style Script';
    src: url('fonts/Style_Script/StyleScript-Regular.ttf') format('truetype');
	font-weight: 900;
}
@font-face {
	font-family: 'Big Shoulders';
    src: url('fonts/Big_Shoulders/BigShoulders-VariableFont_opsz,wght.ttf') format('truetype');
	font-weight: 500;
}
@font-face {
	font-family: 'Graduate';
    src: url('fonts/Graduate/Graduate-Regular.ttf') format('truetype');
	font-weight: 400;
}
@font-face {
	font-family: 'Anton';
    src: url('fonts/Anton/Anton-Regular.ttf') format('truetype');
	font-weight: 900;
}
@font-face {
	font-family: 'Henny Penny';
    src: url('fonts/Henny_Penny/HennyPenny-Regular.ttf') format('truetype');
	font-weight: 900;
}
body {
	padding: 5vh 0;
	margin: 0;
	background-color: black;
	background-image: radial-gradient(60deg, #333 0%, #111 25%, #111 75%, #333 100%);
	background-repeat: repeat-y;
	color: black;
	font-family: 'Big Shoulders', 'Arial', 'Helvetica', 'Verdana', sans-serif;
	font-size: 3vw;
	line-height: 1.1em;
	text-align: center;
}
#board {
	width: 98vw;
	margin: 2vw auto;
	padding: 1vw;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 5vw;
	background-color: #ddd;
	box-shadow: 0px 4px 24px 12px rgba(5, 5, 5, 0.8);
}
p {
	color: #161616;
	font-size: 1.2em;
	hyphens: auto;
}
a {
	color: lightgray;
}
table {
	width: 98%;
	background-color: #f5fef8;
	border-collapse: collapse;
	margin: 2vh auto 1vh auto;
}
td {
	position: relative;
	background-color: rgba(244, 255, 247, 1);
	border: 2px solid gray;
}
td:after {
	content: '';
	display: block;
	margin-top: 100%;
}
.cell {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	line-height: 8vh;
	height: 100%;
}
.cell p {
	line-height: 1;
	padding: 10px;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}
h1 {
	font-family: 'Anton', serif;
	font-size: 3em;
	line-height: 1em;
	color: #eee;
	padding: 3vh 0 0 0;
	margin: 0;
}
.ctr {
	background-color: rgba(238, 168, 168, 0.1);
	box-sizing: border-box;
	border-radius: 100%;
	border: 5px solid rgba(238, 168, 168, 0.2);
}
.chipped {
	background-color: rgba(238, 168, 168, 1) !important;
	border-radius: 100%;
	transition: all .25s ease-in-out;
}
.win {
	text-shadow: 0px 0px 12px rgba(228, 255, 105, 0.8);
}
#message {
	color: #f5fef8;
	width: 80vw;
	margin: 1vh auto;
	font-family: 'Arial', sans-serif;
	font-size: 1.2em;
	line-height: 1.2em;
}
#credits {
	font-family: 'Arial', sans-serif;
	font-size: 0.9em;
	color: lightgray;
}
#credits a {
	font-weight: 700;
	color: white;
}
#face {
	display: inline-block;
	width: 80px;
	height: 80px;
	background-color: white;
	background-image: url('../bingoIcons.png');
	background-size: 250%;
	border: 1px solid white;
	border-radius: 100%;
}
@media (orientation: landscape) and (min-width: 1200px) {
	#board {
		width: 48vw;
		font-size: 1.5vw;
	}
	#message, #credits {
		width: 48vw;
		font-size: 1.2em;
	}
}