/* ---------------------------------------- 
Delaney Poitras
---------------------------------------- */

/* 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: #ff8080;
}

div {border: solid 0px rgb(255,204,204)}

.blank {
	background-color: #ff8080;
}

.blank: {
	transform rotate(180deg)
}
.blank div { 
	box-shadow: 15px 15px 30px black;
	background-color: #732626;
	border-radius: 25%;
	width: 75%;
	height: 100%;
	transform: rotate(90deg);
	margin-top: 0%;
	background-repeat: no-repeat;
	background-position: center;	
}