<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="robots" content="noindex, nofollow, noarchive">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Firma geschlossen</title>
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:#111827;
font-family:Arial, Helvetica, sans-serif;
overflow:hidden;
}
.container{
text-align:center;
padding:50px;
}
.lock{
font-size:90px;
margin-bottom:25px;
animation:pulse 2s infinite;
}
.line{
width:90px;
height:4px;
background:#374151;
margin:0 auto 30px auto;
border-radius:999px;
}
h1{
color:#ffffff;
font-size:42px;
font-weight:700;
margin-bottom:18px;
letter-spacing:1px;
}
p{
color:#9ca3af;
font-size:18px;
line-height:1.6;
max-width:500px;
margin:auto;
}
@keyframes pulse{
0%{
transform:scale(1);
}
50%{
transform:scale(1.08);
}
100%{
transform:scale(1);
}
}
</style>
</head>
<body>
<div class="container">
<div class="lock">🔒</div>
<div class="line"></div>
<h1>Firma geschlossen</h1>
<p>
Diese Internetpräsenz steht nicht mehr zur Verfügung.
</p>
</div>
</body>
</html>