/* this is a comment. add CSS definitions below. */

@media(max-width:767px) { /* mobile width css */
	.someClassName { color: red; text-align: center; }
}

@media(min-width:768px) { /* desktop width css */
	.someClassName { color: red; text-align: center; }
}