@media only screen and (max-width:480px) {
body{
	background-color: purple;
	font-size: 12px;	
	text-align: center;
	padding: 10px;
}
p:after {
    content: " is 480 or less.";
}
	
	/*-----Prevents iphone from resizing in landscape mode-----*/
	html{webkit-text-size-adjust: none;}

}