
body {  background-color:#80FFFF;
        font-family: verdana, helvetica, ariel, sans-serif; 
       	font-size: 15px;}

TD   {	font-family: Verdana; font-size: 12px }

.gallery {
        margin: 10px 50px;
}

.gallery img{
        width: 200px;
        height: 150px;
        padding: 5px;
        filter: grayscale(100%);
        transition: 1s;
}

.gallery img:hover{
        filter: grayscale(0);
        transform: scale(1.1);
}