<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Under Construction</title>
<style>
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    text-align: center;
}
.container {
    padding: 40px;
}
.icon {
    font-size: 80px;
}
h1 {
    font-size: 42px;
}
p {
    font-size: 18px;
    color: #666;
}
.badge {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #222;
    color: white;
    border-radius: 30px;
}
</style>
</head>
<body>
<div class="container">
<div class="icon">&#128679;</div>
<h1>Under Construction</h1>
<p>We are currently working on something awesome.<br>Our website will be available soon.</p>
<div class="badge">Coming Soon</div>
</div>
</body>
</html>