/***** Screen Bigger than 960px *****/
@media only screen and (min-width:960px) {


}


/***** Screen Bigger than 960px *****/
@media only screen and (min-width:1900px) {



}



/***** Screen Bigger than 960px *****/
@media only screen and (min-width:1600px) and (max-width: 1899px) {




}


/***** Screen Bigger than 960px *****/
@media only screen and (min-width:1200px) and (max-width: 1599px) {


}




/***** Tablet (Smaller than 959px) *****/
@media only screen and (min-width: 768px) and (max-width: 959px) {


	#getting-started
	{
		font-size:
				28px;


	}

	h2
	{
		font-size: 30px;


	}
}



/***** Phone (portrait 300px) *****/
@media only screen and (max-width: 767px) {

	#getting-started
	{
		font-size: 20px;


	}

	h2
	{
		font-size: 25px;


	}

}





/***** Phone (landscape 420px) *****/
@media only screen and (min-width: 480px) and (max-width: 767px) {


	#getting-started
	{
		font-size: 25px;


	}

	h2
	{
		font-size: 28px;


	}
	
}