body{
    font-family: sans-serif;
}
h1{
    text-align: center;
    color:  black;
    margin: 30px 0 50px
}
.gallery{
    margin: 10px 50px;
}
.gallery img{
    width: 200px;
    padding: 5px;
    filter: blur(100%);
    transition: 1s;
}
.gallery img:hover{
    filter: blur(0);
    transform: scale(1.1);
}
.lb-image{
      max-width: inherit;
  }