/* Mystical fixed image background using attached example image */
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  background-image: url('kisswap-background.jpg'); /* Replace with your image path or URL */
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  text-align: center; /* Center all text on the page */
}

/* Remove the dark overlay */
body::before {
  content: none;
}

/* Ensure your content stays above the background */
header, main, footer {
  position: relative;
  z-index: 1;
  text-align: center; /* Recenter text for these main containers */
}
