/* Fullscreen background container */
.construction-container {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("bg.jpg") no-repeat center center/cover; /* Replace bg.jpg with your background image */
}

/* Logo styling */
.logo img {
  filter: brightness(100%);
}

/* Text styling */
h1 {
  font-size: 3rem;
  letter-spacing: 2px;
}

p {
  max-width: 500px;
  font-size: 1.1rem;
}

/* Button hover */
.btn-danger {
  background-color: #7f0200;
  border: none;
}

.btn-danger:hover {
  background-color: #7f0200;
  transition: 0.3s;
}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
}
