@tailwind base;
@tailwind components;
@tailwind utilities;


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

.background-container::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: radial-gradient(
      circle 25vmax at var(--cursorX, 50vw) var(--cursorY, 50vh),
      rgba(12, 42, 94, 0.5) 0,
      rgba(14, 35, 75, 0.3) 50%,
      rgba(15, 23, 42, 0) 100%
  );
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  background-color: rgba(15, 23, 42, 1);
}

.container {
  position: relative;
  z-index: 2; 
}


