.MainMenu {
	position: absolute;
	top: 0;
	left: 64px;
	right: 0;
	bottom: 0;
	pointer-events: all;
	color: #fff;
	font-family: 'Lemon Days';
	font-size: 64px;
	flex-direction: column;
	cursor: pointer;

	&.hidden {
		display: none;
	}

	> title {
		font-size: 256px;
		font-weight: bold;
	}

	> .options {
		flex-direction: column;
		justify-content: center;


		> .button {
			transition: all 0.1s ease;
			transform-origin: left center;

			&:hover {
				transform: scale(1.2);
			}
		}
	}
}
