<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Under Construction</title>
<style>
    body {
        font-family: Arial, sans-serif;
        background-color: #f4f4f4;
        text-align: center;
    }
    .container {
        margin-top: 100px;
    }
    h1 {
        color: #333;
    }
    p {
        color: #666;
    }
</style>
</head>
<body>

<div class="container">
    <h1>Under Construction</h1>
    <p>We're working on something awesome! Please check back later.</p>
</div>

</body>
</html>