/************************************************************************************
smaller than 800
*************************************************************************************/

@media only screen and (max-width: 800px) {
	
}

/************************************************************************************
smaller than 650
*************************************************************************************/
@media only screen and (max-width: 650px) {

}
@media screen and (max-width: 480px) {

}

/************************************************************************************
smaller than 480
*************************************************************************************/
@media screen and (max-width: 479px) {
 
	/* disable webkit text size adjust (for iPhone) */
	html {
		-webkit-text-size-adjust: none;
	}
	h2, p{
		font-size:1.5em;
		letter-spacing:0.5px;
	}
}

