* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(180deg, #0a0e1a, #0e162a);
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

.custom-cursor {
  width: 25px; /* Passe die Größe an */
  height: 30px;
  background-image: url('customcursor.png');
  background-size: cover;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  visibility: hidden;
}


h1, h2, p {
  margin: 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  text-align: center;
  z-index: 9998;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  background: linear-gradient(500deg, #fcd53a, #faa42d, #f87026, #f8372e); /* Dein Farbverlauf */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-animation 10s infinite linear;
}


@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

.hero h2 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  background: linear-gradient(90deg, #ff512f, #dd2476, #1e90ff, #00ffb9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-animation 3s infinite linear;
}

.hero p {
  font-size: 1.5rem;
  background: linear-gradient(90deg, #ff512f, #dd2476, #1e90ff, #00ffb9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  animation: fadeIn 3s ease-in-out;
}


/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #0a0e1a;
  color: #666;
  font-size: 0.9rem;
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* Keyframes für Animationen */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

