#gallery {
  opacity: 0;
  animation: 3s linear 2s forwards fade-in;
}

#gallery img {
  display: inline-block;
}

.gallery-thumbnail {
  position: absolute;
  max-width: 30%;
  max-height: 40%;
  z-index: 0;
}

.gallery-full {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  transform: rotate(0) !important;
  z-index: 2;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}