<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Website Under Maintenance</title>
  <style>
    body {
      background-color: #f7f7f7;
      font-family: Arial, sans-serif;
    }
    
    .container {
      max-width: 500px;
      margin: 0 auto;
      text-align: center;
      padding-top: 100px;
    }
    
    h1 {
      font-size: 36px;
      margin-bottom: 20px;
    }
    
    p {
      font-size: 18px;
      line-height: 1.5;
      margin-bottom: 30px;
    }
    
    .logo {
      width: 150px;
      height: 150px;
      margin-bottom: 30px;
      background-image: url('your-logo.png');
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="logo"></div>
    <h1>Website Under Maintenance</h1>
    <p>Sorry, this website is currently under maintenance. We're working hard to bring it back online as soon as possible.</p>
  </div>
</body>
</html>