@charset "utf-8";
/* CSS Document */

* {margin:0px;
   padding:0px; }

html{ 

background: url(bg.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-attachment: fixed;
}

.image {
 transition: transform 0.7s;
}

.image:hover {
 transform: scale(1.25, 1.25);
}