   body {
        background: url("fotos/resources/bg.jpg") repeat;
        font-family: "Times New Roman";
        margin: 0;
        padding: 20px;
        color: beige;             
        display: flex;
        justify-content: center;
        font-size: 1.1rem;
      }
      .container {
        max-width: 1000px;
        width: 100%;
        max-height: 80vh;
        overflow: auto;
        background-color: rgba(50, 5, 0, 0.75);
        border: 2px solid #333;
        border-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAAXNSR0IArs4c6QAAALtJREFUOE+9VVsOwCAI0/sfeotOSOlAjSPzZ8RIKa+ullKu8pw6bPmO6+Xn5YcXzbsFQNBmR0feol+30QkB5V6yiICZZfdjVh5TDrZ600HleEwlNWY69YtqimDcOK/mhr3X6dTuczel5rPu4xtlG80ml8UD5oZp472RwDFazakEMzirLdoFNeC/Mk2vKc/ocfczVEqDR7t/ulFbKvVp96P0o+mYqttMbXa0lIXd6CmKsmdHa8oZak3T/1E3woR6BRBlLbAAAAAASUVORK5CYII=') 7 / 7px / 0 round;
        border-color: beige;
        border-width: 7px;
        border-style: solid;
        padding: 30px;
        box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
        text-align: left;
      }


    
  
      h1, h3 {
        font-weight: normal;
        margin-bottom: 10px;
        text-align: center;
      }

      h1 {
        font-size: 1.8rem;
        margin-bottom: 5px;
      }

      h2 {
        font-size: 1.2rem;
        margin-top: 30px;
        border-bottom: 1px dashed #888;
        padding-bottom: 5px;
       
      }

      p {
        margin: 10px 0;
        font-size: 1.1rem;
        text-align: left;
      }

      img.hero {
        display: block;       /* make it a block so margin auto works */
        width: 140px;
        height: 140px;
        object-fit: cover;
        margin: 20px auto;    /* top/bottom 20px, left/right auto = centered */
    }

      /* Buttons */
      .button-row {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
        margin: 15px 0;
      }

      .button-row a {
        display: inline-block;
        background-color: rgba(50, 0, 0, 0.75);
        border: 1px solid #555;
        padding: 6px 14px;
        text-decoration: none;
        color: beige;                             
        font-size: 0.9rem;
        transition: background-color 0.2s, transform 0.2s;
      }
      
      .button-row a:hover {
        background-color: #f5f0d0; /* slightly lighter on hover */
        color: #111;              /* readable against light hover */
        transform: scale(1.05);
      }

      footer {
        margin-top: 40px;
        font-size: 0.9rem;
      }

      footer a {
        color: #000;
        text-decoration: none;
        border-bottom: 1px solid #333;
      }

      footer a:hover {
        border-color: transparent;
      }
      
   #dump {
  display: flex;        /* put imgs in a row */
  flex-wrap: wrap;      /* wrap to next row if not enough space */
  gap: 10px;            /* space between squares */
  justify-content: center;
}

#dump img {
  width: 200px;         /* square size */
  height: 200px;
  object-fit: cover;    /* crop nicely inside square */
  display: block;
}

.pdf-viewer {
  width: 100%;
  height: 80vh; /* same max-height as .container */
  border: none;
  background-color: rgba(50, 5, 0, 0.75);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  border: 2px solid #333;
  border-width: 7px;
  border-style: solid;
  border-color: beige;
}
