/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  color: #333;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.maintenance-box {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}

.logo {
  width: 200px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 10px;
}

p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #666;
}

.countdown {
  font-size: 1.2rem;
  margin-top: 30px;
}

.countdown span {
  font-weight: bold;
  font-size: 1.5rem;
  color: #e74c3c;
}
