<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Under Maintenance</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; font-family: Arial, sans-serif; background-color: #f2f2f2; color: #333; } .container { text-align: center; } h1 { font-size: 3em; margin-bottom: 0.5em; } p { font-size: 1.2em; } </style> </head> <body> <div class="container"> <h1>We are under maintenance</h1> <p>Sorry for the inconvenience. We'll be back soon.</p> </div> </body> </html>