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

/* Container holds everything */
.background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.white_text {
  color:white;
  font-size: 1rem;
  font-family: 'Orbitron', sans-serif;
}



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


/* 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;
}
