<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Coming Soon</title>
<!-- Google Font: Gajraj One -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Gajraj+One&display=swap" rel="stylesheet">
<style>
html, body {
height: 100%;
margin: 0;
background: #000;
}
.wrap {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 18px;
text-align: center;
padding: 24px;
box-sizing: border-box;
}
img.square {
width: min(60vmin, 420px);
aspect-ratio: 1 / 1;
object-fit: cover;
display: block;
}
.text {
color: #fff;
font-family: "Gajraj One", system-ui, sans-serif;
font-size: clamp(20px, 4vmin, 40px);
letter-spacing: 0.08em;
}
</style>
</head>
<body>
<main class="wrap">
<img class="square" src="bilder/Platzhalter.jpg" alt="Platzhalter" />
<div class="text">COMING SOON</div>
</main>
</body>
</html>