/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}




/* Main container */
.container {
  text-align: center;
  padding: 20px;
}

.content {
  position: relative;
}

/* Heading styles */
h1 {
  font-size: 3rem;
  color: #3b629d;
  margin-bottom: 20px;
}

/* Button styles */
.btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #d0ac6c;
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  border-radius: 5px;
  margin-top: 20px;
}

/* Image that appears in larger screens */
.coming-image {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Responsive design: hiding image on small screens */
@media (max-width: 768px) {
  .coming-image {
    display: none;
  }
}

/* Footer styles */
.footer {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}
