body {
    font-family: serif;
}
table {
    font-weight: 200;
    padding-top: 35px;
    font-size: 18px;
}
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  img {
    display: block;
    margin-left: auto;
    padding-right: 70px;
    height: 400px;
  }
  
  /* Override for bottom image to center it */
  body > div:last-of-type img {
    padding-right: 0;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Responsive columns */
    gap: 10px; /* Space between images */
    float: right; /* Keep the gallery on the right */
    width: 300px; /* Adjust width as needed */
    padding: 10px;
    position: relative; /* Ensure proper positioning */
}

.gallery img {
    width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure images cover the area without distortion */
}

br {
    line-height: 0.2;
}