PauseMenu {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: transparent;
	pointer-events: all;
	backdrop-filter: blur(10px);
	color: white;
	font-family: Tannenberg Fett;
	font-size: 6vh;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	> h2 {
		top: -20vh;
		font-size: 12vh;
		font-weight: bolder;
		text-shadow: 15px 15px 8px rgba(black, 0.5);
	}

	> .options {
		flex-direction: column;
		align-items: center;
		text-shadow: 15px 15px 8px rgba(black, 0.5);
		transition: all 0.2s ease;

		.button {
			margin-top: -2vh;
			transform: scale(0.8);
			font-size: 8vh;
			transition: all 0.1s ease;

			&:hover {
				transform: rotate(-2deg) scale(1);
			}
		}
	}
}
