PauseMenu {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	backdrop-filter: blur( 10px );
	pointer-events: all;
	z-index: 1000;

	.heading-container {
		position: absolute;
		top: 10%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.button-container {
		position: absolute;
		bottom: 10%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.title {
		font-size: 85px;
		font-family: Poppins;
		color: #b6b6b6;
	}

	.time {
		font-size: 70px;
		font-family: Poppins;
		color: #fff;
	}

	.button {
		text-transform: uppercase;
		font-weight: 1000;
		width: 500px;
		height: 70px;
		padding: 10px;
		margin: 10px;
		background-color: #00ff90;
		color: #000000;
		font-size: 30px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}

	.sub-timer-title {
		font-size: 30px;
		font-weight: 600;
		color: #b6b6b6;
	}

	.sub-timer {
		font-size: 42px;
		font-weight: 600;
		color: #b6b6b6;
	}

	&.open {
		display: none;
	}
}