/*body {
    background-color: grey;
}*/
body {
background-color: #5B5B62; 
}

p {
color: white;
}

/*********************************************************************************/
/* This is where the magic happens ;)                                            */
/*********************************************************************************/

.blur img {
	-webkit-transition: all 1s ease;
	-moz-webkit-transition: all 1s ease ;
	-ms-webkit-transition: all 1s ease ;
	-o-webkit-transition: all 1s ease ;
	transition: all 1s ease ;
}

.blur img:hover {
	-webkit-filter: blur(5px);
}