<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>Inside Metallurgy Podcast</title>

  <style>

    body {

      font-family: Arial, sans-serif;

      background: #f7f7f7;

      margin: 0;

      padding: 40px;

      text-align: center;

      color: #333;

    }

    .container {

      max-width: 650px;

      margin: auto;

      background: white;

      padding: 40px;

      border-radius: 12px;

      box-shadow: 0 4px 20px rgba(0,0,0,0.1);

    }

    img.logo {

      max-width: 180px;

      margin-bottom: 25px;

    }

    h1 {

      margin-top: 0;

      font-size: 2rem;

    }

    p {

      font-size: 1.1rem;

      line-height: 1.6;

    }

    a.button {

      display: inline-block;

      margin-top: 20px;

      padding: 14px 28px;

      background: #0052cc;

      color: white;

      text-decoration: none;

      font-size: 1.1rem;

      border-radius: 8px;

      transition: background 0.2s ease;

    }

    a.button:hover {

      background: #003d99;

    }

  </style>

</head>

<body>

  <div class="container">

    <img src="logo.png" alt="Inside Metallurgy Logo" class="logo">

    <h1>Inside Metallurgy Podcast</h1>

    <p>Visit our Riverside page to learn more about our show, recordings, and production workflow.</p>

    <a class="button" href="https://insidemetallurgy.riverside.com/about" target="_blank">

      Go to Riverside Page

    </a>

  </div>

</body>

</html>