body {
	margin: 0;
	font-family: Roboto;
	background: black;
}

#splash,
#pausesplash {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

#splash div,
#pausesplash div {
	text-align: center;

}

h1 {
	margin: 0;
	margin-bottom: 10px;
	font-size: 80px;
}

#splash a,
#pausesplash a {
	font-size: 30px;
	cursor: pointer;
}

a:hover {
	cursor: pointer;
	color: aqua;
}

#snake-game {
	position: relative;
	margin: auto;
}

#score {
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 11;
	color: white;
	font-size: 40px;
}

#timer {
	position: absolute;
	right: 20px;
	top: 65px;
	z-index: 11;
	color: white;
	font-size: 40px;
}

#pause {
	position: absolute;
	left: 20px;
	top: 20px;
	z-index: 11;
	color: white;
	font-size: 30px;
}

#pause #bigger {
	font-size: 45px;
	vertical-align: middle;
}

#settings {
	position: absolute;
	bottom: 20px;
	left: 20px;
	font-size: 20px;
}

#settings input {
	width: 125px;
}

#settings table td {
	padding-right: 10px;
}

#settings table td:nth-child(odd) {
	text-align: right;
}

#settings table td:nth-child(even) {
	text-align: left;
}

#author {
	position: absolute;
	bottom: 20px;
	right: 20px;
	font-size: 20px;
	color: white;
}