<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coming Soon</title>
<style>
body {
background-color: black;
color: #C6B798;
font-family: Georgia, serif;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.logo {
max-width: 300px;
margin-bottom: 30px;
}
.coming-soon-box {
border: 2px solid #C6B798;
padding: 10px 40px;
text-align: center;
font-size: 24px;
letter-spacing: 2px;
text-transform: uppercase;
}
</style>
</head>
<body>
<img src="https://www.buxtonhelmsley.com/images/logo.png" alt="Logo" class="logo">
<div class="coming-soon-box">
Coming Soon
</div>
</body>
</html>