body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000;
    font-family: "Times New Roman", "Times", serif;
    font-stretch: condensed;
  }

  #page-container {
    position: relative;
    min-height: 95vh;
  }

  .container {
    max-width: 1200px;
    /* max-height: 80vh; */
    margin: 20px;
    padding-bottom: 10.5rem;
    /* padding: 20px; */
    justify-content: left;
  }

  #footer {
    position:absolute;
    bottom: 10px;
    width: 100%;
    height: 2.5rem;
    padding: 200;
    margin: 20px;
    margin-bottom: 0;
    opacity: 0.5;
  }

  h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  h2 {
    font-size: 20px;
    margin-top: 3px;
    margin-bottom: 10x;
    /* Reduced space */
    font-style: italic;
    font-weight: normal;
  }

  .subtitle {
    margin-bottom: 10px;
    /* Further reduce spacing if needed */
  }

  .subtitle a {
    text-decoration: none;
    color: blue;
  }

  details {
    margin-bottom: 20px;
    /* border: 1px solid #ccc; */
    background-color: #ffffff;
    /* White background for sections */
    padding-left: 0px;
    border-radius: 0px;
  }

  /* details:first-of-type summary::marker,
  :is(::-webkit-details-marker) {
    content: "+";
    font-family: monospace;
    color: red;
    font-weight: bold;
  }
  
  details[open]:first-of-type summary::marker {
    content: "-";
  }
  
  details:last-of-type summary {
    list-style: none;
    &::before {
      content: "+";
      color: white;
      background-color: darkgreen;
      border-radius: 1em;
      font-weight: bold;
      padding: 0 5px;
      margin-inline-start: 5px;
    } */
    /* [open] &::before {
      content:none;
    } */
  /* }
  details:last-of-type summary::-webkit-details-marker {
    display: none;
  }  */

  summary {
    font-size: 20px;
    font-weight: 200;
    font-style: italic;
    cursor: pointer;
    padding: 0px;
    outline: none;
    list-style: none;
  }

  /* summary::marker {
    list-style: none;
  } */

  .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    /* row-gap: 10px; */
    column-gap: 20px;
    margin-top: 10px;
    justify-items: left;
  }

  .grid-item {
    /* border: 1px solid #ddd; */
    background-color: #fff;
    padding: 0px;
    text-align: center;
    /* box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); */
  }

  .grid-item img {
    align-items: center;
    width: 100%;
    height: auto;
    display:flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
  }

  .grid-item a {
    text-align: center;
    text-decoration: none;
    color: blue;
    font-weight: normal;
    /* Remove bold */
    display: block;
    margin-top: 5px;
  }

  .grid-item a:hover {
    text-decoration: underline;
  }

  .description {
    font-size: 0.9em;
    margin-top: 5px;
    color: #555;
  }

  img {
    max-width: 50vw;
    padding-top: 10px;
  }

a {
    color: blue;
}

 a.back {
    color: #9e9e9e;
    font-style: italic;
    font-size: 1em;
  }

.subtitle p {
    color: pink;
}

section {
    max-width: 60%;
    font-size: 1em;
}

  @media only screen and (max-width: 600px) {
    h1 {
      font-size: 24px;
    }

    h2 {
      font-size: 16px;
    }

    summary {
      font-size: 20px;
    }
  }