#snake-game: canvas {
	max-width: 100%;
	max-height: 100%;
}

#menu {
	position: fixed;
	width: 30%;
	left: 50%;
	top: 50%;
	max-width: 400px;
	min-width: 200px;
	z-index: 4;
	transform: translate(-50%, -50%);
	background-color: #FFFFFF;
}

#snake-game {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

#player-info {
	display: none;
}

#leaderboard {
	background-color: rgba(0, 0, 0, 0.35);
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 2;
}

#leaderboard-content {
	text-align: center;
	color: #FFFFFF;
	font-size: 30px;
}

#leaderboard-text {
	color: #FFFFFF;
	font-size: 25px;
	text-align: center;
}

#server-info {
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 3;
	color: #000000;
}

.lb-entry-self {
	color: #FFAFAF;
}