.box{

  content:url(/images/oakley.jpg);
    
  
    background: white;
    width: 2000px;
    height: 150px;
    float:left;
    animation-name: bannerAnimation;
    animation-duration: 4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    z-index: -4;
    
}
.box2{

  content:url(images/oakley.jpg);
    
  
    background: white;
    width: 150px;
    height: 150px;
    float:center;
    animation-name: bannerAnimations;
    animation-duration: 4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    z-index: -4;
    
}

#banner
{

 position: fixed;
  background-color: blue;
    height: 150px;
    width: 100%;

}


@keyframes myanimation{
    
    0% {left: 0px; top: 0px; border-radius: 0 0 0 0;}
    25% {left: 700px; top: 0px; border-radius: 50% 0 0 0;}
    50% {left: 700px; top: 600px; border-radius: 50% 50% 0 0;}
    75% {left: 0px; top: 600px; border-radius: 50% 50% 50% 0;}
    100% {left: 0px; top: 0px; border-radius: 50% 50% 50% 50%;}
    
}

@keyframes bannerAnimation{



   0% {transform:translate(0); border-radius: 0 0 0 0;}
   12.5% {transform:translate(100px); border-radius: 50% 0 0 0;}
   25% {transform:translate(200px); border-radius: 50% 50% 0 0;}
   37.5% {transform:translate(300px); border-radius: 50% 50% 50% 0;}
   50% {transform:translate(400px); border-radius: 50% 50% 50% 50%;}
   62.5% {transform:translate(300px); border-radius: 50% 50% 50% 0;}
   75% {transform:translate(200px); border-radius: 50% 50% 0 0;}
   87.5% {transform:translate(100px); border-radius: 50% 0 0 0;}
   100% {transform:translate(0); border-radius: 0 0 0 0;}
}
@keyframes bannerAnimations{



   0% {transform:translate(1000px); border-radius: 0 0 0 0;}
   12.5% {transform:translate(900px); border-radius: 50% 0 0 0;}
   25% {transform:translate(800px); border-radius: 50% 50% 0 0;}
   37.5% {transform:translate(700px); border-radius: 50% 50% 50% 0;}
   50% {transform:translate(600px); border-radius: 50% 50% 50% 50%;}
   62.5% {transform:translate(600px); border-radius: 50% 50% 50% 0;}
   75% {transform:translate(600px); border-radius: 50% 50% 0 0;}
   87.5% {transform:translate(600px); border-radius: 50% 0 0 0;}
   100% {transform:translate(600px); border-radius: 0 0 0 0;}
}




body {  background: #660066;}
p { color: #00ff00; }

}

#wrapper {
    background-color: purple;
    width: 960px;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #73AD21;
}



#grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  grid-column-gap:30px;
  grid-row-gap:30px;
 

}

#areaA {
  background-color: lime;
   padding:2px;
  min-height: 200px;
  min-width: 200px;

   height = 100%; 
width = 100%;
   display:block;
 animation-name: areaaAnimation;
    animation-duration: 4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@-webkit-keyframes areaaAnimation{
    
    0% {left: 0px; top: 0px; border-radius: 0 0 0 0;}
    25% {left: 700px; top: 0px; border-radius: 22% 0 0 0;}
    50% {left: 700px; top: 600px; border-radius: 50% 22% 0 0;}
    75% {left: 0px; top: 600px; border-radius: 50% 53% 50% 0;}
    100% {left: 0px; top: 0px; border-radius: 50% 66% 50% 50%;}
    
}


#areaB {
  
   padding:2px;
    height = 100%; width = 100%;
   min-width: 100px;
   min-height: 150px;
   display:block;
}




