PlayerInfo {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	justify-content: center;
	align-items: center;
	font-weight: bold;

	.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;
	}

	.crosshair {
		position: absolute;
		width: 10px;
		height: 10px;
		left: 50%;
		top: 50%;
		transform: translateX(-50%),translateY(-50%);
		background-color: white;
	}

	.respwan {
		position: absolute;
		left: 50%;
		top: 60%;
		transform: translateX(-50%);
		font-size: 60px;
		color: black;
	}
}
