body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  /* Blue gradient */
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  /* Ensure content is above particles */
  text-align: center;
  color: #fff;
  pointer-events: none;
  /* Let clicks pass through to particles if needed, specifically for mouse interactions with particles */
}

h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(60, 169, 209, 0.5);
}

p {
  font-size: 1.5rem;
  opacity: 0.8;
}