/* This content is for all the animations, picture effects, or image stuff */

@keyframes fadeInCenter {
  0% {
    opacity: 0; /* starts invisible */
    transform: scale(0.8) translateY(-20px);
  }
  100% {
    opacity: 1; /* ends fully visible */
    transform: scale(1) translateY(0);
  }
}
