<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Website Temporarily Unavailable</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: Arial, sans-serif;
background: #f4f4f4;
color: #333;
text-align: center;
padding-top: 80px;
}
.box {
background: #fff;
padding: 40px;
margin: auto;
max-width: 500px;
border-radius: 6px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<div class="box">
<h1>We’ll be back soon</h1>
<p>Our website is currently being updated.</p>
<p>Please check back shortly.</p>
</div>
</body>
</html>