/* Custom CSS for D55 Slot */

body {
  background-image: url('/images/space-banner1.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Add a semi-transparent overlay to improve text readability */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

/* Make content containers semi-transparent for a better visual effect */
.container {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
}

/* Make text more readable against the space background */
.text-gray-800 {
  color: #f0f0f0 !important;
}

.bg-white {
  background-color: transparent !important;
} 