@charset "utf-8";

img {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 200px;
   height: 200px;
   margin-top: -100px; /* Half the height */
   margin-left: -100px; /* Half the width */
}

/*** Responsive 320 ***/

@media only screen and (max-width: 479px) {
    
    .container {
        width: 280px;
    }
}


img {opacity:0;
-moz-transition: opacity 10s; /* Firefox 4 */
-webkit-transition: opacity 10s; /* Safari and Chrome */
-o-transition: opacity 10s;
transition: opacity 10s;
}​