.menu-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

h1 {
	margin-top: 5rem;
	font-size: 5rem;
	user-select: none;
}

a {
	text-decoration: none;
}

h2 {
	font-size: 3rem;
	cursor: pointer;
	color: black;
	user-select: none;
}

h2:hover {
	color: orange;
}

h2[disabled=true] {
	color: grey;
	cursor: not-allowed;
}

#instructions-text {
	padding: 2rem 4rem;
	font-size: 1.2rem;
}

#instructions-text ul li {
	margin-left: 2rem;
}

@media only screen and (max-width: 1024px) {
	h1 {
		margin-top: 10rem;
		font-size: 18vw;
		margin-bottom: 6rem;
	}

	h2 {
		font-size: 10vw;
	}
}
