body, html {
  margin: 0;
  height: 100%;
  text-align: center;
  font-family: "Oxygen Mono", monospace;
  color: black;
}

h1 {
  text-transform: uppercase;
  letter-spacing: 1pt;
  font-size: 30pt;
  margin-bottom: 15px;
}

p {
  text-align: left;
  margin: 0;
  text-transform: lowercase;
  font-size: 10pt;
  font-weight: 900;
  width: 20%;
  display: none;
}

#table {
  display: table;
  width: 100%;
  height: 100%;
  /* Initial background color */
}

#centeralign {
  display: table-cell;
  vertical-align: middle;
}

#backgroundImage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* Ensure it stays behind other content */
  opacity: 0;
  /* Initially hidden */
  transition: opacity 1s ease-in-out;
  transition: opacity 0.5s ease-out;
  /* Smooth fade-in/out transition */
}