<!-- #2e3235 #717377-->

* {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
}

body {
      background-color: #000000
}

.pic {
      border: 2px solid #717377;
      height: 600px;
      width: 350px;
      margin: 5px;
      overflow: hidden;
} 

/*UNBLUR*/
.unblur img {
      -webkit-filter: blur(7px);
      -webkit-transition: all 1s ease;
      -moz-transition: all 1s ease;
      -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
      transition: all 1s ease;
}

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