  body {
      background-color: #0000AA;
      color: white;
      font-family: 'Courier New', Courier, monospace;
      margin: 0;
      padding: 0;
    }

    html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  min-height: 100vh;          /* full viewport height */
  display: flex;
  flex-direction: column;     /* stack elements vertically */
}

main {
  flex: 1;                    /* take up all remaining space */
}
    header {
      background-color: #0000A8;
      padding: 20px;
      border-bottom: 3px solid #000;
      text-align: center;
    }

    header h1,
    header h2,
    header p {
      margin: 5px 0;
    }

    .container {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 900px;
      margin: auto;
    }

    .tshirt {
      display: flex;
      background: #C0C0C0;
      border: 2px solid black;
      box-shadow: 4px 4px 0 #000;
      padding: 10px;
      gap: 20px;
    }

    .image-wrapper {
      width: 150px;
      flex-shrink: 0;
    }

    .image-wrapper img {
      background-color: #0000A8;
      width: 100%;
      height: auto;
    }

    .image-wrapper2 {
      width: 400px;
      flex-shrink: 0;
    }

    @media (max-width: 600px) {
      .image-wrapper {
        width: 120px;
      }

      .image-wrapper2 {
        width: 250px;
      }
    }

    .tshirt img {
      max-width: 100%;
      height: auto;
      width: auto;
      border: 2px solid #000;
      flex-shrink: 0;
      display: block;
    }

    .tshirt h2 {
      font-size: 20px;
      color: #000;
    }

    .tshirt p {
      color: #000;
      font-size: 14px;
    }

    .tshirt a {
      display: inline-block;
      margin-top: 10px;
      background: #000080;
      color: white;
      padding: 5px 10px;
      text-decoration: none;
      font-weight: bold;
      border: 2px solid #000;
    }

    footer {
      background-color: #0000A8;
      text-align: center;
      padding: 10px;
      font-size: 14px;
      border-top: 3px solid #000;
    }

    .footL {
      color: #00FF00;
      text-decoration: underline;
    }

        .bgimg {
      background-color: #0000A8;
      max-height: 40vh;
    }

    .window {
      margin: 0 auto
    }

    .social-header {
      position: sticky;
      top: 0;
      background-color: #0000A8;
      padding: 10px;
      text-align: center;
      border-bottom: 2px solid #000;
      z-index: 1000;
    }

    .social-header a {
      color: #00FF00;
      text-decoration: underline;
      margin: 0 10px;
      font-weight: bold;
    }