<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Site Under Construction</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: #f4f4f4;
}
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
background: white;
border-radius: 12px;
box-shadow: 0 4px 24px rgba(0,0,0,0.09);
padding: 48px 36px;
text-align: center;
max-width: 400px;
}
.icon {
font-size: 64px;
margin-bottom: 16px;
}
h1 {
margin: 0 0 12px 0;
font-size: 2em;
color: #333;
}
p {
color: #666;
margin: 0;
font-size: 1.15em;
}
</style>
</head>
<body>
<div class="container">
<div class="icon">🚧</div>
<h1>Site Under Construction</h1>
<p>We're working hard to launch our new website.<br>
Please check back soon!</p>
</div>
</body>
</html>