HUD {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	justify-content: center;
	align-items: center;
	font-weight: bold;


	.information {
		font-size: 40px;
		position: absolute;
		left: 50%;
		top: 10%;
		transform: translateX(-50%);
	}

	.health {
		position: absolute;
		left: 10%;
		bottom: 10%;
		font-size: 60px;
		color: lime;
	}

	.gravity {
		position: absolute;
		left: 50%;
		bottom: 10%;
		transform: translateX(-50%);
		font-size: 60px;
		color: orange;
	}
}
