.damncreative-logo-header {
  height: 150px;
  width: auto;
}
.damncreative-logo {
  width: 300px;
  height: 300px;
  filter: drop-shadow(0 0 25px #ff0000);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 10px #ff0000);
  }
  50% {
    filter: drop-shadow(0 0 35px #ff3333);
  }
}
.aot-button {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 1em;
  font-weight: bold;
  color: white;
  background-color: var(--primary-color);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(248, 27, 14, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.aot-button:hover {
  background-color: #e0180d;
  box-shadow: 0 6px 20px rgba(248, 27, 14, 0.6);
}
.project-image {
  width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(142, 141, 141, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}
.techStack-slider {
  position: relative;
  width: 80vw;
  height: 300px;
  overflow: hidden;
}

.moving-image {
  position: absolute;
  width: 120px; /* Bildgröße */
  height: auto;
  top: 50%; /* vertikal zentrieren */
  transform: translateY(-50%); /* exakte Mitte */
  animation: moveLeft linear infinite;
  animation-fill-mode: both;
  opacity: 0;
}

@keyframes moveLeft {
  0% {
    transform: translate(100vw, -50%);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(-150px, -50%);
    opacity: 0;
  }
}
