/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background */
body {
  font-family: Arial, sans-serif;
  height: 100vh;
  width: 100vw;
  background: black url('logo.png') no-repeat center center;
  background-size: contain; /* show full image */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dark overlay */
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);  /* darker black overlay */
  display: flex;
  justify-content: center;
  align-items: flex-start; /* align content towards top */
  padding-top: 15%; /* moves the whole block lower */
}

/* Content styling */
.content {
  z-index: 1;
  max-width: 90%;
}

/* Move heading independently */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 350px;  /* adjust this to move "Maintenance mode is on" lower */
}

p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

footer p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 2rem;
}
