/* declaration for our first CSS class */
.green-text {
color: green;
}

/* declaration for our second CSS class */
.blue-text {
color: blue;
font-weight: bold;
}

.main-txt {
	font-family: Verdana, Arial;
}

#grim {
	color: green;
	font-family: Verdana;
}

#notgrim {
	color: brown;
	weight: bold;	
	font-style: Arial;
}

img {
  width: auto ;
  max-width: 100% ;
  height: auto ;
}

.main-cen {
	text-align: center;
}


