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



/* Mobile */
.content--paragraph {
	font-size: 15px;
	line-height: 20px;
	padding: 20px 40px;
}
.content--paragraph[style="background-color: black;"] {
	color: white;
}
.content--paragraph:first-child {
	padding-top: 40px;
}

/* Tablet */
@media ( min-width: 900px ) {
	.content--paragraph {
		font-size: 22.5px;
		line-height: 30px;
		padding: 37.5px 75px;
	}
	.content--paragraph:first-child {
		padding-top: 75px;
	}
}

/* Desktop */
@media ( min-width: 1600px ) {
	.content--paragraph {
		font-size: 30px;
		line-height: 40px;
		padding: 50px 100px;
	}
	.content--paragraph:first-child {
		padding-top: 100px;
	}
}