    body {
      margin: 0;
      font-family: sans-serif;
      background-color: #f9f9f9;
      color: #333;
      text-align: center;
      padding: 1rem;
      line-height: 1.4;
      font-family: Inter, sans-serif;
    }

    header img, .logo {
      max-width: 300px;
      height: auto;
      display: block;
      margin: 5rem auto 5rem;
    }

    h1, h2 {
      margin: 2rem 0.5rem;
    }

    h1  {
      font-size: 2em;
    }

    p, li, figcaption {
      text-align: left;
      max-width: 600px;
      margin: 0.5rem auto 2rem;
    }

    figcaption  {
      margin-top: none !important;
      font-size: small;
    }



    .project {
      max-width: 800px;
      margin: 2rem auto;
      padding: 1rem;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: center;
    }

    .project img {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 6px;
      margin-top: 20px;
        transition: transform 0.3s ease;
    }

      .hero {
    transform: scale(1.01);
    cursor: pointer;
    }

    .project-summary {
      text-align: left;
      margin-top: 1rem;
    }

    .dropdown {
      margin-top: 1rem;
    }

    .dropdown-content {
      display: none;
      text-align: left;
      margin-top: 2rem;
    }

    p a {
      text-align: center;
    }

    button {
      padding: 0.5rem 1rem;
      border: none;
      background-color: #dadada;
      color: black;
      font-size: 1rem;
      border-radius: 4px;
      cursor: pointer;
      margin-top: 2rem;
      margin-bottom: 2rem;
    }

    .tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centers horizontally */
  gap: 8px;

}

.tag {
  display: inline-block;
  padding: 4px 12px;

  border-radius: 9999px;
  font-size: 14px;
  margin: 0;
  background-color: #f9f9f9;
  text-align: center;
}

    section h2  {
      text-align: center;
      margin-bottom: 30px !important;
    }

    section h3  {
     text-align: center;
    }

    section blockquote  {
      text-align: center;
    }

section img {
  transform: none !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  cursor: default !important;
  margin-top: 2.5rem !important;
}

footer {
  height: 200px;
}

    button:hover {
      background-color: #FF9825;
    }

    @media (min-width: 768px) {
      body {
        padding: 2rem;
      }

      p {
        font-size: 1.1rem;
      }

      .project-summary, .dropdown-content {
        font-size: 1rem;
      }
    }