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

body {
  font-family: 'Orbitron', sans-serif;
  overflow: hidden;
  cursor: default;
}

#background-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  position: relative;
  z-index: 1;
}

#main-text {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow:
    0 0 10px rgba(192, 0, 255, 0.6),
    0 0 20px rgba(192, 0, 255, 0.4),
    0 0 40px rgba(255, 0, 128, 0.3);
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
  min-height: 100px; /* Reserve space to prevent layout shift */
}

#main-text:hover {
  opacity: 1;
  transform: scale(1.02);
  text-shadow:
    0 0 15px rgba(220, 100, 255, 0.9),
    0 0 30px rgba(220, 100, 255, 0.7),
    0 0 50px rgba(255, 100, 180, 0.5);
}
