<!doctype html>
<html lang="fr">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width,initial-scale=1" />
  <title>Changement d’enseigne</title>
  <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=Inter:wght@400;600;800&display=swap" rel="stylesheet">
  <style>
    html, body { height: 100%; margin: 0; }
    body {
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: #000;
      color: #fff;
      display: grid;
      place-items: center;
      padding: 24px;
    }
    .card {
      max-width: 720px;
      width: 100%;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 18px;
      padding: 28px;
      background: rgba(255,255,255,.04);
      box-shadow: 0 12px 40px rgba(0,0,0,.6);
      text-align: center;
    }
    .icon {
      width: 64px; height: 64px;
      margin: 0 auto 12px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.06);
      font-size: 30px;
    }
    h1 { margin: 8px 0 10px; font-size: 28px; }
    p { margin: 0 0 16px; opacity: .9; line-height: 1.5; }
    .url { font-weight: 800; font-size: 20px; letter-spacing: .2px; }
    .actions {
      margin-top: 18px;
      display: flex;
      justify-content: center; /* centrage horizontal */
    }
    a.btn {
      display: inline-block;
      text-decoration: none;
      padding: 12px 22px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.2);
      color: #fff;
      background: rgba(255,255,255,.08);
      font-weight: 700;
    }
    a.btn.primary {
      background: #fff;
      color: #000;
      border-color: #fff;
    }
    small { display:block; margin-top: 14px; opacity: .7; }
  </style>
</head>

<body>
  <main class="card">
    <div class="icon">↗</div>
    <h1>Changement d’enseigne</h1>
    <p>Nouveau site internet :</p>
    <p class="url">www.gymk.fr</p>

    <div class="actions">
      <a class="btn primary" href="https://www.gymk.fr" rel="noopener">
        Accéder au nouveau site
      </a>
    </div>

    <small>Merci de votre compréhension.</small>
  </main>
</body>
</html>