<!doctype html>
<html lang="de">
<head>
  <meta charset="utf-8">
  <title>SHOP.KAFFKIEZ.COM</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">

  <style>
    /* ==== Custom Font Einbindung ==== */
    @font-face {
      font-family: 'Segment A Key Black';
      src: url('https://deine-domain.de/wp-content/uploads/fonts/SegmentAKey-Black.woff2') format('woff2'),
           url('https://deine-domain.de/wp-content/uploads/fonts/SegmentAKey-Black.woff') format('woff');
      font-weight: 900;
      font-style: normal;
      font-display: swap;
    }

    /* ==== Layout ==== */
    body {
      margin: 0;
      background: #ffffff; /* Weißer Hintergrund */
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;       /* volle Höhe */
    }

    a {
      font-family: 'Segment A Key Black', sans-serif;
      font-size: clamp(32px, 8vw, 96px); /* responsive Größe */
      font-weight: 900;
      color: #ff2700;      /* gewünschte Farbe */
      text-decoration: none;
      text-transform: uppercase; /* Alles in CAPITAL LETTERS */
    }

    a:hover {
      text-decoration: underline;
    }
  </style>
</head>
<body>
  <a href="https://SHOP.KAFFKIEZ.COM">SHOP.KAFFKIEZ.COM</a>
</body>
</html>