    /* Basic CSS Reset */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        font-family: Arial, sans-serif;
        background: #1456cf;
        color: #333;
        line-height: 1.6;
        padding: 20px;
      }
      .container {
        margin: auto;
        background: #000000a1;
        padding: 30px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
      }
      header {
        text-align: center;
        margin-bottom: 20px;
      }
      header h1 {
        font-size: 5.5em;
        margin-bottom: 10px;
        color: #ffffff;
      }
      header p {
        font-size: 2.1em;
        color: #ffffff;
      }
      .content {
        text-align: center;
        margin: 20px 0;
      }
      .content p {
        font-size: 1.6em;
        margin-bottom: 15px;
        color: #ffffff;
      }
      a {
        color: #3498db;
        text-decoration: none;
        font-weight: bold;
      }
      a:hover {
        text-decoration: underline;
      }
      footer {
        text-align: center;
        margin-top: 30px;
        font-size: 0.9em;
        color: #ffffff;
      }