/**
 * @author Valentin Alisch, Nicolas Zupfer
 * @version 1.0
 *
 * Content: Button;
 */



/* Mobile */
.content--button {
	text-align: center;

	font-size: 22.5px;
	line-height: 22.5px;
	padding: 50px 0;
}
.content--button[style="background-color: black;"] {
	color: white;
}

/* Tablet */
@media ( min-width: 900px ) {
	.content--button {
		font-size: 45px;
		line-height: 45px;
		padding: 75px 0;
	}
}

/* Desktop */
@media ( min-width: 1600px ) {
	.content--button {
		font-size: 60px;
		line-height: 60px;
		padding: 100px 0;
	}
}