PlayerHud {
	font-family: Tannenberg Fett;

	> .vitals {
		position: absolute;
		top: 3vh;
		left: 2.5vw;
		font-size: 6vh;
		font-weight: bold;
		letter-spacing: 8px;
		color: white;
		flex-direction: column;

		.emoji {
			font-size: 5vh;
			width: 8vh;
		}

		.not-emoji {
			text-stroke: 8px black;
		}

		.animate {
			animation: pop 0.3s;
		}
	}
}

@keyframes pop {
	0% {
		font-size: 6vh;
		transform: rotate(0deg);
	}

	50% {
		font-size: 8vh;
		transform: rotate(10deg);
	}

	100% {
		font-size: 6vh;
		transform: rotate(0deg);
	}
}
