/* Reset margins, paddings, and borders */
html, body {
  margin: 0;
  padding: 0;
  border: 0;
  height: 100%; /* Full viewport height */
  overflow-x: hidden; /* Prevent horizontal scrolling */
}


/* Ensure the container of both the slider and the text has a relative position */
.container-fluid {
  position: relative;
}

.text-container {
  margin-top: -45%;
  z-index: 9999; /* A more reasonable z-index value */
  position: relative; /* This might be needed */
  background-color: #000; /* Assuming bg-dark means black background */
  color: #fff; /* Adjust text color as needed */
}
