main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 2rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.under-maintenance {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  padding: 48px 32px;
  margin: 60px auto 0 auto;
  max-width: 480px;
  text-align: center;
  border: 5px solid #232336;
}

.under-maintenance h1 {
  color: black;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.under-maintenance p {
  color: black;
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .under-maintenance {
    padding: 28px 10px;
    border-radius: 14px;
    max-width: 98%;
  }
  .under-maintenance h1 {
    font-size: 1.2rem;
  }
  .under-maintenance p {
    font-size: 1rem;
  }
}