<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Display Case - Coming Soon</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
text-align: center;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
max-width: 600px;
padding: 20px;
}
h1 {
font-size: 36px;
margin-bottom: 20px;
}
p {
font-size: 18px;
line-height: 1.6;
}
.footer {
margin-top: 30px;
font-size: 14px;
color: #777;
}
</style>
</head>
<body>
<div class="container">
<h1>The Display Case</h1>
<p>We're working hard to bring you something amazing. Stay tuned for the grand reveal!</p>
<p>Coming Soon...</p>
<div class="footer">
© 2025 The Display Case. All rights reserved.
</div>
</div>
</body>
</html>