.head {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center; 
        gap: 50px; /* Espaciado entre los items */
        margin: 20px 0;
      }
      .head-information {
        display: flex; /* Sirve para alinear y organizar lo que hay dentro de ese container  */
        flex-direction: column; /* Indica que se colocan los items verticalmente */
        gap: 25px;
      }
      .head-subinformation {
        display: flex;
        flex-direction: column;
        gap: 5px;
      }

      body {
        padding: 0 25%;
      }

      .table-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center; 
        justify-content: center; /* Como se distribuyen los elementos  a lo larjo del eje (en este caso en columna) */
      }

      .table-container2 {
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
      }

      h1.titulo {
        font-size: 60px;
        margin: 0;
        font-weight: bold;
      }

      .subtitulo {
        margin: 0;
      }

      th {
        background: #2c3e50;
        color: white;
        text-align: center;
        font-weight: bold;
      }

      td {
        text-align: left;
      }

      th,
      td {
        border: 2px solid black;
        padding: 10px;
      }

      table {
        border-collapse: collapse;
        width: 100%;
        height: 100%;
        background: white;
      }

      a {
        color: black;
        text-decoration: none;
      }

      img.recuadro {
        border: 5px solid black;
        background-color: #333;
      }