.TopScoreInput{
	color: #333;
	text-align: left;
	font-family: 'Skranji', bold;
	font-size: 50px;
	font-weight: 800;
	user-select: none;
	padding: 2px;

}
.TopScoreInput:focus {
    outline: none;
	font-size: 25px;
}
.TopScoreInput::placeholder {
	color: #333;
	opacity: 0.7;
    font-size: 50px;
}
.Leaderboard{
	color: #9fc5e8;
	cursor: default;
	text-align: left;
	font-family: 'Skranji-Bold', bold;
	font-size: 18px;
	font-weight: 800;
	user-select: none;
	padding: 20px;
	border: 0;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.1);
	line-height: 28px;
	readonly: true;
}
.Leaderboard::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 5px;
	background-color: #133163;
	display: none;
}
.Leaderboard::-webkit-scrollbar
{
	width: 5px;
	border-radius: 5px;
	background-color: #133163;
	display: none;
}
.Leaderboard::-webkit-scrollbar-thumb
{
	border-radius: 5px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #2555a8;
	display: none;
}
.Leaderboard:focus {
    outline: none;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;	
	font-family: Raleway, sans-serif;
}