.partikul-efekti {
  position: relative;
  height: 400px;
  background: linear-gradient(to bottom, #000, #222);
}

.partikul-efekti h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 1;
}

.partikul {
  position: absolute;
  background-color: #f9c922;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  animation: partikul-cikis 2s ease-in-out infinite;
}

.partikul:nth-child(1) {
  left: 10%;
  animation-delay: 0.5s;
}

.partikul:nth-child(2) {
  left: 20%;
  animation-delay: 1s;
}

.partikul:nth-child(3) {
  left: 30%;
  animation-delay: 1.5s;
}

.partikul:nth-child(4) {
  left: 40%;
  animation-delay: 2s;
}

.partikul:nth-child(5) {
  left: 50%;
  animation-delay: 2.5s;
}

.partikul:nth-child(6) {
  left: 60%;
  animation-delay: 3s;
}

.partikul:nth-child(7) {
  left: 70%;
  animation-delay: 3.5s;
}

.partikul:nth-child(8) {
  left: 80%;
  animation-delay: 4s;
}

.partikul:nth-child(9) {
  left: 90%;
  animation-delay: 4.5s;
}

@keyframes partikul-cikis {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(800px);
    opacity: 0;
  }
}
