#preloader {
  position: fixed;
  z-index: 9999;
  background-color: #1a3a5f; /* Deine Grundfarbe */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease;
}

.pulse-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #c0b283; /* Goldton */
  box-shadow: 0 0 20px rgba(192, 178, 131, 0.6);
  animation: pulse 2.5s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(7);
    opacity: 0;
  }
}
