@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Montserrat", sans-serif;
}

.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

@keyframes float {
  0% {
    transform: translateX(-200px);
    opacity: 0.05;
  }
  10% {
    opacity: 0.2;
  }
  30% {
    opacity: 0.3;
  }
  100% {
    transform: translateX(calc(100vw + 200px));
    opacity: 0.05;
  }
}

.floating-card {
  position: absolute;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  animation: float 6s linear infinite;
  user-select: none;
}

.floating-card::before {
  content: "✦";
}

.card-1 {
  top: 5%;
  font-size: 6rem;
  animation-duration: 35s;
  animation-delay: 0s;
}

.card-2 {
  top: 20%;
  font-size: 4rem;
  animation-duration: 40s;
  animation-delay: -15s;
}

.card-3 {
  top: 40%;
  font-size: 5rem;
  animation-duration: 45s;
  animation-delay: -8s;
}

.card-4 {
  top: 50%;
  font-size: 3rem;
  animation-duration: 38s;
  animation-delay: -22s;
}

.card-5 {
  top: 70%;
  font-size: 6rem;
  animation-duration: 42s;
  animation-delay: -12s;
}

.card-6 {
  top: 85%;
  font-size: 5rem;
  animation-duration: 36s;
  animation-delay: -30s;
}
