<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wartungsarbeiten</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f7f7f7;
color: #222;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
padding: 20px;
}
.box {
max-width: 520px;
background: white;
padding: 40px 30px;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
h1 {
margin-bottom: 16px;
font-size: 32px;
}
p {
font-size: 18px;
line-height: 1.5;
margin: 0;
}
</style>
</head>
<body>
<div class="box">
<h1>Wir führen gerade Wartungsarbeiten durch</h1>
<p>Unsere Website ist in wenigen Tagen wieder verfügbar.</p>
</div>
</body>
</html>