/**
 * @author Valentin Alisch, Nicolas Zupfer
 * @version 1.0
 *
 * Menu Button
 */



/* Mobile */
#menu-button {
	position: fixed;
	top: 0;
	left: 0;
	cursor: pointer;
	font-weight: 400;
	mix-blend-mode: difference;
	z-index: 100;
	color: white;

	font-size: 15px;
	line-height: 20px;
	padding: 12.5px 40px;
}
#menu-button:hover {
	font-weight: 700;
}

/* Tablet */
@media ( min-width: 900px ) {
	#menu-button {
		font-size: 22.5px;
		line-height: 30px;
		padding: 18.75px 75px;
	}
}

/* Desktop */
@media ( min-width: 1600px ) {
	#menu-button {
		font-size: 30px;
		line-height: 40px;
		padding: 25px 100px;
	}
}