
    body {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
      background-color: #f4f4f4;
      font-family: Arial, sans-serif;
    }

    .container {
      text-align: center;
    }

    h1 {
      margin-bottom: 30px;
      color: #333;
    }

    a.button {
      display: inline-block;
      padding: 20px 40px;
      font-size: 1.5rem;
      color: white;
      background-color: #007BFF;
      text-decoration: none;
      border-radius: 12px;
      transition: background-color 0.3s ease;
    }

    a.button:hover {
      background-color: #0056b3;
    }
