.animated-object1, .animated-object2, .animated-object3, .animated-object4, .animated-object5, .animated-object6, .animated-object7   {
  opacity: 0;
  animation: fadeInOut 1s forwards;
}

@keyframes fadeInOut {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}