TutorialHud {
	position: absolute;
	left: 0;
	right: 0;
	font-family: Tannenberg Fett;

	> .tutorial {
		position: absolute;
		top: 3vh;
		left: 50%;
		transform: translateX(-50%);
		font-size: 48px;
		font-weight: bold;
		text-stroke: 7px black;
		letter-spacing: 6px;
		flex-direction: column;
		color: white;

		.progress-bar {
			width: 500px;
			height: 20px;
			background-color: rgba(0, 0, 0, 0.8);
			border-radius: 10px;
			margin-top: 20px;
			margin-left: auto;
			margin-right: auto;

			.progress {
				height: 100%;
				background-color: limegreen;
				border-radius: 10px;
			}
		}
	}
}
