* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 50px;
  max-width: 500px;
  width: 100%;
}

.maintenance-message h1 {
  font-size: 2.5rem;
  color: #ff6f61;
  margin-bottom: 20px;
}

.maintenance-message p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.icon img {
  width: 50px;
  height: 50px;
}

footer {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #888;
}

footer p {
  margin: 10px 0;
}
