.bigImg img {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.bigImg img:hover {
  box-shadow: 2px 5px 4px 0 rgba(9, 17, 30, 0.1);
}

#myModal {
  display: none;
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

#myModal figure {
  margin: auto;
  display: block;
}

#myModal figcaption {
  margin: auto;
  display: block;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

#myModal figure, #myModal figcaption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

