/* Mobile First web Design. */

article.niceText {
	margin-top: 75px;
	margin-right: 85px; /* To account for the side nav bar. Maybe put this on the body style... */
	font-size: 50px;
	font-family: 'Roboto Condensed', sans-serif;
}

article.niceText * { /* All children */
	margin: 0;
	padding: 0;
}

article.niceText h1 {
	font-size: 140%;
	color: #404040;
}

article.niceText p {
	color: #646464; /* #444; */
	width: 95%;
	text-align: left;
	margin: 0 auto;
}

article.niceText a {
	color: #bbb;
}

/* For Desktop Mode: */
@media (min-width: 1000px) {
	
	article.niceText {
		margin-top: 100px; /* So the top does not overlap the nav bar UI... */
		margin-right: 0;
		font-size: 18px;
	}
	
	article.niceText * { /* All children */
	}
	
	article.niceText h1 {
	}
	
	
	article.niceText p {
	}

}
