/* ---------------------------------------- 
Sejal Aggarwal
---------------------------------------- */

/* 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: black);
}

div { border: solid blue 1px; }


.sa {
	background-color:pink; 
	opacity: 05;
}

.blue {
	background-color: blue;

}

.picture2 {
	background: url(../images/design2.jpg);
}

.picture1:hover {
	background: url(../images/design1.jpg);
}

.transition{
	background-color: purple;
	transition: rotate(15deg);	 
}
