<!DOCTYPE html>
<html>
  <head>
    <title>Under Construction</title>
    <style>
      body {
        background-color: #f2f2f2;
        font-family: Arial, sans-serif;
      }
      
      .center {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
      }
      
      .construction {
        font-size: 48px;
        font-weight: bold;
        color: #666;
      }
    </style>
  </head>
  <body>
    <div class="center">
      <div class="construction">Under Construction</div>
    </div>
  </body>
</html>