body
{
margin:0;
}

#banner
{
background-color:#960014;
padding:2%;
height:20%;
}

h1
{
text-align: center;
font-family:candara;
font-size: 3em;
}

#body
{
width:100%;
background-color:#1175a9;
}

#cell
{
margin:3%;
display:inline-block;
position:relative;
width:20%;
height:20%;
border: 10px solid #f7e070;
background-color:#f7e070;
font-family:verdana;
}

#cell img
{filter:alpha(opacity=40)
 -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
 }

#cell img:hover
{
opacity:0.5;
filter:alpha(opacity=100); 
border-radius: 50%;
  -webkit-transform: rotate(360deg);
     -moz-transform: rotate(360deg);
       -o-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}





