/* This is your custom css template file */

/* 
   This is a comment. Comments are used to explain your code, 
   and may help you when you edit the source code at a later 
   date. A comment will be ignored by browsers.
*/

/*
   The CSS syntax is made up of three parts: 
   a selector, a property and a value:
   
   for e.g.
   selector {property: value}

   The selector is normally the HTML element/tag you wish to 
   define, the property is the attribute you wish to change, 
   and each property can take a value. The property and value 
   are separated by a colon, and surrounded by curly braces.
*/

/* Turn your template's background to black */
/*
body {
	background-color: black;
}
*/

/* Make all links red and green as you move your 
   cursor over them*/
/*
a {
	color: red;
}
a:hover {
	color: green;
}
*/