 /* Reset some defaults */
    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
    }
    /* Set a background image – replace 'your-background.jpg' with the actual image URL */
    body {
      background: url('img/joemonizbg.jpg') no-repeat center center fixed;
      background-size: cover;
      font-family: 'Helvetica Neue', Arial, sans-serif;
      color: #ffffff;
      text-align: center;
      padding: 0px;
    }
    /* A container to help center the content vertically */
    .container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
      background: rgba(0.4, 0, 0, 0); /* Optional: dark overlay to improve text contrast */
      padding: 0px;
    }
    h1 {
      font-size: 4em;
      margin: 0.2em 0;
    }
    p {
      font-size: 1.5em;
      margin: 0.5em 0;
    }
    /* Optional: styling for additional content areas */
    .content {
      margin-top: 2em;
      padding: 1em 2em;
      background: rgba(0, 0, 0, 0);
      border-radius: 8px;
    }
    /* Style the iframe to match the table width and center it */
    iframe {
      display: block;
      width: 300px;
      height: 450px;
      margin: 5px auto;
      border: 1px solid #148;
    }