  @import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400&display=swap');

  /* Pennsylvania Railroad Modernism Theme */

  /* Use League Spartan to evoke a lighter geometric, modern style */
  body {
    font-family: 'League Spartan', sans-serif;
    background: #e0e0e0;
    color: #333;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 300;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  main {
    max-width: 70rem;
    width: 100%;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #6A2423;
    flex: 1;
  }
  main h1{
    padding-top: 2rem;
  }

  main h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #6A2423;
    font-weight: 400;
    text-align: center;
  }

  main li {
    text-transform: none;
  }

  main hr{
    border: none;
    border-top: 1px solid #6A2423;
    margin: 0 0;
  }

  header {
    background: #6A2423;
    color: #FFD700;
    text-align: center;
    position: relative;
    padding: 2rem 0;
  }

  .stripe {
    height: 1px;
    background: #FFD700;
    width: 100%;
    margin: 1.5rem 0;
  }

  header .oval {
    position: relative;
    display: inline-block;
    background: #4B1F1D;
    color: #FFD700;
    width: 95%;
    max-width: 75rem;
    height: 5rem;
    border-radius: 2.5rem;
    border: 1px solid #FFD700;
    line-height: 5rem;
    font-size: 3rem;
    font-weight: 100;
    text-align: center;
    padding: 1rem auto;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
  }

  nav>ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    overflow: visible;
  }

  nav ul li {
    position: relative;
    margin-right: 1.5rem;
  }

  nav ul li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 400;
  }

  nav ul li a:hover {
    text-decoration: underline;
  }

  nav ul li a.active {
    font-weight: bold;
    text-decoration: underline;
    color: #FFD700;
  }

  nav ul li>.dropdown {
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #6A2423;
    color: #FFD700;
    min-width: 12rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    border-radius: 0.5rem;
    pointer-events: auto;
  }

  nav ul li:hover>.dropdown,
  nav ul li:focus-within>.dropdown {
    display: block;
  }

  .dropdown li {
    list-style: none;
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0;
  }

  .dropdown a {
    display: block;
    text-align: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    color: #FFD700;
    background: none;
    text-decoration: none;
    font-weight: 400;
  }

  .dropdown a:hover,
  .dropdown a.active {
    background: #FFD700;
    color: #6A2423;
  }

  footer {
    background: #6A2423;
    color: #FFD700;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    position: relative;
    width: 100%;
    bottom: 0;
    margin-top: auto;
  }

  footer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  footer ul li {
    flex: 1 1 calc(25% - 1rem);
    text-align: center;
  }

  footer ul li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 400;
  }

  footer ul li a:visited {
    color: #FFD700;
  }

  footer ul li a:hover {
    text-decoration: underline;
  }

  /* Intro section styling reflects modern design aesthetics */
  .intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #6A2423;
    font-weight: 400;
  }

  .intro p {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 300;
  }

  .content h1 {
    text-transform: none;
  }

  /* Posts section styling */
  .posts h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #6A2423;
    text-align: center;
    font-weight: 400;
  }

  /* List styling */
  .posts ul {
    list-style: none;
    padding: 0;
  }

  .posts ul li {
    margin-bottom: 0.5rem;
  }

  .post-card {
    background: #fff;
    border: 2px solid #FFD700;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(106, 36, 35, 0.08);
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .post-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 4px 16px rgba(106, 36, 35, 0.15);
  }

  .post-card a {
    color: #6A2423;
    font-size: 1.3rem;
    font-weight: 400;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
  }

  .post-card p {
    color: #333;
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
  }

  p {
    text-transform: none;
  }

  table {
    margin-left: auto;
    margin-right: auto;
    border-collapse: separate;
    border-spacing: 0.25rem;
  }

  td,
  th {
    padding: 0.25rem 0.5rem;
    text-align: center;
  }

  @media (max-width: 1200px) {
    nav>ul {
      flex-direction: column;
      align-items: stretch;
    }

    nav ul li {
      margin-right: 0;
      margin-bottom: 0.75rem;
    }

    nav ul li>.dropdown {
      position: static;
      min-width: 100%;
      box-shadow: none;
      border-radius: 0;
      background: #6A2423;
      padding: 0;
      margin-top: 0;
    }

    .dropdown a {
      padding: 0.3rem;
    }

    main {
      max-width: 100vw;
      width: 100vw;
      padding: 1rem;
      margin: 0;
      box-sizing: border-box;
    }

    header .oval {
      font-size: 1.5rem;
      letter-spacing: 0.25em;
      padding: 0.5rem auto;
      max-width: 95%;
    }

    table {
      margin-left: auto;
      margin-right: auto;
      border-collapse: separate;
      border-spacing: 0.25rem;
    }

    td,
    th {
      padding: 0.2rem 0.2rem;
      text-align: center;
    }
  }