<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Belly Barn - Coming Soon</title>
<style>
body {
background-color: #f8f8f8;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
}
h1 {
font-size: 3rem;
color: #333;
}
p {
font-size: 1.5rem;
color: #666;
}
</style>
</head>
<body>
<h1>Belly Barn</h1>
<p>Website Under Construction</p>
<p>Check back soon!</p>
</body>
</html>