<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BN Makeovers - Coming Soon</title>
<style>
body {
margin: 0;
padding: 0;
background-color: #f9f3ee;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
font-family: Arial, sans-serif;
}
.container {
max-width: 600px;
padding: 20px;
}
.logo {
max-width: 250px;
width: 100%;
}
h1 {
color: #b07a5c;
margin-top: 20px;
font-size: 28px;
}
p {
color: #333;
font-size: 18px;
}
</style>
</head>
<body>
<div class="container">
<img src="logo.png" alt="BN Makeovers Logo" class="logo">
<h1>Coming Soon</h1>
<p>We're working on something amazing. Stay tuned!</p>
</div>
</body>
</html>