
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #0c0a18; /* A deep, dark blue for the base background */
}

@keyframes move {
  0% { transform: translate(0, 0); }
  25% { transform: translate(5px, 10px); }
  50% { transform: translate(-5px, -10px); }
  75% { transform: translate(10px, -5px); }
  100% { transform: translate(0, 0); }
}

.constellation {
  animation: move 60s infinite alternate ease-in-out;
}
