/* styles.css */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.maintenance-container {
  text-align: center;
  background: #fff;
  padding: 20px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 10px;
}

p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 20px;
}

.maintenance-image {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

.countdown {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #333;
}

#countdown {
  font-size: 1.5rem;
  color: #007bff;
  font-weight: bold;
}