body {
	margin: 0;
	padding: 0;
	overflow: hidden;

	background-color: #ADC5CA;
}

canvas {
	position: absolute;
	top: 0;
	left: 0;
}

#speed {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 550;
	font-size: 35px;
	text-align: center;
	color: #515151;

	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);

	user-select: none;
	-webkit-user-select: none;
}

#heatWrapper {
	position: absolute;
	top: 30px;
	left: 10px;

	border-radius: 8px;
	border: 7px solid #525454;
	background: #7A7A7A;

	width: 20px;
	height: 200px;

	user-select: none;
	-webkit-user-select: none;
}
#heat {
	position: absolute;
	bottom: -1px;

	width: 101%;
	height: 25%;

	transition: height 100ms cubic-bezier(0.165, 0.84, 0.44, 1);

	background: #D85656;
	border-radius: 3px;

	user-select: none;
	-webkit-user-select: none;
}

#heatText {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
	font-size: 24px;
	text-align: left;
	color: #545858;

	position: absolute;
	top:  34px;
	left: 55px;

	user-select: none;
	-webkit-user-select: none;
}
#heatText div {
	margin-bottom: 66px;

	user-select: none;
	-webkit-user-select: none;
}

#endScreen {
	position: absolute;
	top:  16vh;
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	opacity: 0;
	transition: transform, opacity;
	transition-duration: 200ms;
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);

	font-family: "Josefin Sans", sans-serif;
	font-weight: 600;
	font-size: 30px;
	text-align: center;
	color: #3D3D3D;

	user-select: none;
	-webkit-user-select: none;
}
#endScreen.active {
	opacity: 1;
	transform: translateX(-50%) translateY(0px);
}

#reason {
	font-size: 44px;
	font-weight: 700;
}
#maxScore {
	font-size: 32px;
	font-weight: 600;
	margin-top: 8px;
}
#tryAgain {
	font-size: 24px;
	font-weight: 500;
	margin-top: 14px;
	color: #474747;
}
#start {
	position: absolute;
	left: 50%;
	top: 30vh;
	transform: translateX(-50%) translateY(-10px);
	opacity: 0;
	transition: transform, opacity;
	transition-duration: 200ms;
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);

	font-family: "Josefin Sans", sans-serif;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	margin-top: 14px;
	color: #474747;
}
#start.active {
	opacity: 1;
	transform: translateX(-50%) translateY(0px);
}