@import url('https://fonts.googleapis.com/css2?family=Passion+One&display=swap');
.TopScoreInput{
	color: #333;
	text-align: center;
	font-family: 'Passion One', cursive;
	font-size: 50px;
	user-select: none;
	padding: 10px;
	border: 0;
	border-radius: 10px;
	background: #D9D9D9;
	z-index: 999;
}
.TopScoreInput:focus {
    outline: none;
}
.TopScoreInput::placeholder {
	color: #333;
	opacity: 0.7;
    font-size: 50px;
}
.Leaderboard{
	color: #fff;
	cursor: default;
	text-align: left;
	font-family: 'Passion One', cursive;
	font-size: 30px;
	user-select: none;
	padding: 50px;
	border: 0;
	border-radius: 20px;
	background: rgba(6, 136, 191, 0.5);
	line-height: 30px;
	readonly: true;
	text-shadow: 0px 2px rgba(0, 0, 0, 0.25);
}
.Leaderboard::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #29275F;
	display: none;
}
.Leaderboard::-webkit-scrollbar
{
	width: 8px;
	border-radius: 10px;
	background-color: #29275F;
	display: none;
}
.Leaderboard::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #363375;+
	display: none;
}
.Leaderboard:focus {
    outline: none;
}