body {
  margin: 0; /* Remove default body margin */
  background-image: url("images/DSC09720.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: black; 
  font-family: "Poppins", sans-serif; 
  font-weight: 400;
  font-style: normal;
 letter-spacing: -1.056px; 
  display: flex;
  flex-direction: column; /* Align items vertically */
  /* justify-content: center; /* Center vertically */ */
  align-items: center; /* Center horizontally */
  min-height: 100vh; /* Ensure full viewport height */
}

h1 {  font-weight: 400;
  font-style: normal;
}
.container {
  text-align: center; /* Center text within the container */
  margin-top: 40px;
}

.logo {
  width: 250px;
  height: auto;
}

.coming-soon-text {
  font-size: 64px;
  color: white;
  margin-top: 30px; /* Space between logo and text */
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
  .coming-soon-text {
    font-size: 48px;
  }
}

@media screen and (max-width: 480px) {
  .coming-soon-text {
    font-size: 36px;
  }
  .logo {
    width: 200px; /* Adjust logo size on smaller screens */
  }
}