<!DOCTYPE html>
<html>
<head>
    <title>Temporary Website Maintenance</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <style>
        body { 
            margin: 0; 
            padding: 0; 
            background: #ffffff; 
            height: 100vh; 
            display: flex; 
            align-items: center; 
            justify-content: center;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
    </style>
</head>
<body>
    <!-- The single maintenance image provided by the client -->
    <img src="PASTE_YOUR_BASE64_IMAGE_STRING_HERE" alt="Website Under Maintenance Notice">
</body>
</html>