/* ---------------------------------------- 
Natasha
---------------------------------------- */

/* 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  {
    width: 100px;
    height: 100px;
    position: relative;
    background-color: red;
    animation-name: example;
    animation-duration: 6s;
    animation-iteration-count: infinite;
}

@-webkit-keyframes example {
    0%   {background-color: lightpink; left:0px; top:0px;}
    25%  {background-color: lightyellow; left:100px; top:0px;}
    50%  {background-color: white; left:100px; top:100px;}
    75%  {background-color: lightyellow; left:0px; top:100px;}
    100% {background-color: lightpink ; left:0px; top:0px;}
}



.lozenge {
    background-color: pink;
    width: 200px;
    height: 200px;
    border-bottom-left-radius: 80%;
    border-top-right-radius: 80%;

   }



.lozenge2  {
    background-color: pink;
    width: 200px;
    height: 200px;
    border-bottom-right-radius: 80%;
    border-top-left-radius: 80%;
 }




.lozenge3  {
    background-color: yellow;
    width: 200px;
    height: 200px;
    border-bottom-right-radius: 80%;
    border-top-left-radius: 80%;
}

.lozenge4 {
    background-color: yellow;
    width: 200px;
    height: 200px;
    border-bottom-left-radius: 80%;
    border-top-right-radius: 80%;
}




.example:hover { 
	roatate: 90deg;
	cursor: pointer;
}


.example div { 
	background: url(../images/black.jpg);

	border-radius: 50%;
	width: 50%
	height: 50%;
}