/* ---------------------------------------- 
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 : magenta;

}



div  {
    width: 200px;
    height: 200px;
    position: relative;
    background-color: red;
    animation-name: example;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@-webkit-keyframes example {
    0%   {background-color: yellow; left:0px; top:0px;}
    25%  {background-color: magenta; left:0px; top:100px;}
    50%  {background-color: black; left:100px; top:100px;}
    75%  {background-color: orange; left:100px; top:0px;}
    100% {background-color: black ; left:0px; top:0px;}
}



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

}
	
   




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




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

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

.color
{background-image: url(black.jpg);}


.example2
div { 
    background: url(../images/sun.jpg);

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





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

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

border-style: 


 