@import "/UI/Style.scss";

DamageCounter {
	position: absolute;
	bottom: 50%;
	left: 50%;
	width: auto;
	gap: 6px;

	margin-left: 34;
	margin-bottom: 30;

	font-size: 24px;
	font-family: $font-main;
	text-align: left;
	text-overflow: clip;
	color: white;

	flex-direction: column-reverse;
	justify-content: flex-start;

	label {
		transform: scale(1);
		transition: transform 0.15s ease-in-out;

		&:intro {
			transform: scale(0);
		}
	}
}