/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  font-family: 'Courier New', Courier, monospace;
}


.background {
  background-image: url('splashpage.jpg');
  background-size: contain;           /* ✅ Shrinks image to always fit */
  background-repeat: no-repeat;
  background-position: center center; /* Keeps it centered */
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;                /* centers content horizontally */
}

/* Responsive Image */
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Maintain aspect ratio and fit within container */
  z-index: 0;
}

/* Title Styling */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 10vh;
}

.neon-title {
  color: red;
  font-size: 4rem;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  text-shadow:
    0 0 5px #ff0000,
    0 0 10px #ff0000,
    0 0 20px #ff4d4d,
    0 0 40px #ff4d4d;
}

/* Footer Styling */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color: white;
  font-size: 1.25rem;
  text-align: center;
  padding: 1rem 0;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: monospace;
}


.title {

  width: 100%;
  color: rgb(255, 64, 0);
  font-size: 4rem;
  text-align: center;
  padding: 1rem 0;
  font-family: monospace;
}
.subtitle {

  width: 100%;
  color: rgb(121, 121, 121);
  font-size: 2rem;
  text-align: center;
  padding: 1rem 0;
  font-family: monospace;
}
@media (max-width: 600px) {
  .footer {
    font-size: 0.9em;
    padding: 0.5em;
  }
}