@charset "utf-8";
/* CSS Document */
 <style>
    body {
      background-color: black;
      margin: 0;
      font-family: Arial, sans-serif;
    }
    table {
      width: 100%;
      text-align: center;
      background-color: black;
    }
    td {
      padding: 12px;
    }
    a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
    }
    a:hover {
      color: cyan;
    }
  </style>
  <style>
    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f8f4ed;
      color: #333;
    }

    header {
      background-color: #00A3E0;
      color: white;
      padding: 20px;
      text-align: center;
    }

    header h1 {
      margin: 0;
      font-size: 2.5em;
    }

    nav {
      background-color: #00A3E0;
      display: flex;
      justify-content: center;
      gap: 30px;
      padding: 10px 0;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    nav a:hover {
      text-decoration: underline;
    }

    .contenido {
      max-width: 1000px;
      margin: 40px auto;
      padding: 20px;
    }

    .oficio {
      margin-bottom: 40px;
      padding: 20px;
      background-color: #fff7f0;
      border-left: 5px solid #b93434;
      border-radius: 8px;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .oficio img {
      max-width: 300px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .texto-oficio {
      flex: 1;
      min-width: 250px;
    }

    .oficio h2 {
      color: #b93434;
      margin-top: 0;
    }

    footer {
      background-color: #023e8a;
      color: white;
      text-align: center;
      padding: 15px;
      margin-top: 50px;
    }

    @media (max-width: 768px) {
      .oficio {
        flex-direction: column;
        align-items: center;
      }

      .oficio img {
        max-width: 100%;
      }
    }
  </style>