body{
	/*
	background-image: url(background.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	*/
	font-family: Arial, sans serif;
	margin: 0;
	padding: 0;
	text-align: center;
	background-color: #111111;
}

#scoreBoard{
	box-sizing: border-box;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95vw;
	display: flex;
	padding: 20px;
	border: 2px solid #EEEEEE;
	border-radius: 15px;
	color: #fff;
	background-color: #111111;
}

input{
	text-align: center;
	width: 90%;
}

input.team{
	font-size: 10vw;
	font-weight: bold;
	height: auto;
	border: none;
	background-color: #00000000;
	color: #EEEEEE;
}

input.score{
	border-radius: 8px;
	text-align: center;
	font-size: 20vw;
	border: none;
}

input.score:active{
    scale: 0.99;
}

.functionBtns{
	display: flex;
}

button{
	width: 40%;
	height: 25px;
	cursor: pointer;
	border-radius: 8px;
	border: 1px solid #333333;
	color: #333333;
	background-color: #111111;
	margin: auto;
	margin-top: 1rem;
}
