<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Goodbye from Mackey Web Design</title>
  <style>
    /* Reset some default styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      background: linear-gradient(135deg, #1f1f1f, #323232);
      color: #f5f5f5;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
      padding: 20px;
    }

    .container {
      max-width: 600px;
      background-color: rgba(255, 255, 255, 0.05);
      padding: 40px 30px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5);
      animation: fadeIn 1s ease forwards;
    }

    h1 {
      font-size: 2.5rem;
      color: #ffd166; /* Warm gold, celebratory */
      margin-bottom: 20px;
      letter-spacing: 1px;
    }

    p {
      font-size: 1.25rem;
      line-height: 1.6;
      margin-bottom: 15px;
      color: #ffffffcc; /* Slight transparency for depth */
    }

    .signature {
      margin-top: 30px;
      font-style: italic;
      color: #f5f5f5;
      font-size: 1.1rem;
    }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Mobile adjustments */
    @media (max-width: 480px) {
      h1 {
        font-size: 2rem;
      }

      p {
        font-size: 1rem;
      }

      .container {
        padding: 30px 20px;
      }
    }
  </style>
</head>
<body>
  <div class="container">
    <h1>So long, farewell, etc.</h1>
    <p> Delivered. Grateful. Done.</p>
    <p class="signature">Thanks for everything,<br>Your friends at Mackey Web Design</p>
  </div>
</body>
</html>
