<!doctype html>
<html lang="hu">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hamarosan indulunk</title>
<style>
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
font-family: Arial, sans-serif;
background: #f7f7f7;
color: #111;
text-align: center;
padding: 24px;
}
.box { max-width: 600px; }
h1 { font-size: 42px; margin-bottom: 12px; }
p { font-size: 18px; color: #555; }
</style>
</head>
<body>
<div class="box">
<h1>Coming soon</h1>
<p>Az oldal fejlesztés alatt áll. Hamarosan érkezünk.</p>
</div>
</body>
</html>