/* ---------------------------------------- 
Your Name
---------------------------------------- */

/* NOTES:

1. DO NOT use width or height properties for any parent-level divs (these are divs you will be adding classes to).
2. Use % over px for sizing interior divs
3. Remember: if you do not give dimention and style to interior divs, we will not see them. By default, divs are invisible.

*/

/* so we can tell that our file is loading */
body {
	background-color: rgb(255,245,0);
}

.example {
	background-color: red;
}

.example:hover { 
	background-color: blue;
	cursor: pointer;
}

.example:active {
	background: url(../images/pattern.jpg);
}

.example div { 
	background: url(../images/pattern.jpg);
	border-radius: 50%;
}