/* ---------------------------------------- 
Tony
---------------------------------------- */

/* 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-image:;
	background-size: absolute;
}


.tm{
	background: rgb(255,255,255);

}

.purple{
	background: rgb(102,45,145);
	
}

.purplestroke {
	background-color: rgb(255,255,255);
}


.orange {
	background-color: rgb(251,176,64);
}


.orangestroke {
	background-color: rgb(255,255,255);
}


.orangestoke <div> {
	outline: 2px
	outline-color: rgb(251,176,64); 
}

.purple:hover { 
	background-image:   
	cursor: pointer;
	transition: background-image 1s;
}

