.animation-orange {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 100000;
  background-color: rgba(11, 135, 11, 0.829);
  animation-name: bckgr;
  animation-duration: 5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  pointer-events: auto;
}

.animation-orange img {
  width: 10%;
  animation-name: oranger1;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  pointer-events: none; /* şəkilə klik lazım deyil */
}

.animation-orange.animation-ended {
  pointer-events: none;
  display: none;
}

@keyframes oranger1 {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

@keyframes bckgr {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}