<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DinosaurHunter.com - Coming Soon</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f4f4f4;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
text-align: center;
}
.container {
background: white;
padding: 3rem;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
max-width: 400px;
}
img.logo {
max-width: 150px;
height: auto;
margin-bottom: 20px;
}
h1 { color: #2c3e50; margin-bottom: 10px; }
p { color: #7f8c8d; line-height: 1.6; }
</style>
</head>
<body>
<div class="container">
<img src="logo.png" alt="Dinosaur Hunter Logo" class="logo">
<h1>Dinosaur Hunter</h1>
<p>The ultimate destination for dinosaur enthusiasts. We are currently excavating something amazing. Stay tuned!</p>
</div>
</body>
</html>