      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      body {
        background: #c29bc7;
        background: linear-gradient(90deg, rgba(194, 155, 199, 1) 0%, rgba(79, 0, 107, 1) 18%, rgba(0, 0, 0, 1) 100%);
        font-family: 'Karla', sans-serif;
        font-size: 16px;
        color: #111;
        overflow-x: hidden;
      }

      .bgimg {
        position: fixed;
        bottom: 0;
        left: 150px;
        width: 1024px;
      }

      .sidewrapper {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        z-index: 4;
      }

      .sidewrapper2 {
        display: flex;
        flex-direction: row;
        height: 100%;
      }

      .side1 {
        background-color: #000;
        width: 150px;
        height: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
        font-size: 28px;
        font-family: 'PT Sans Narrow', sans-serif;
        padding: 1.5rem 0 1.5rem 0;
        overflow: scroll;
        overflow-x: hidden;
      }

      .side2 {
        background-color: #000;
        opacity: 0.7;
        width: 50px;
        height: 100%;
      }

      .headerwrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 3;
      }

      .headerborder {
        background: rgba(0, 0, 0, 0.8);
        width: 100%;
        height: 25px;
      }

      .header {
        margin-left: 200px;
        font-size: 56px;
        padding-top: 3rem;
        line-height: 38px;
        font-family: 'Arial', sans-serif;
        text-shadow: 3px 3px 0px #C29BC7;
        color: #000;
      }

      .footerwrapper {
        width: 100%;
        background-color: #000;
        opacity: 0.7;
        height: 40px;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 2;
      }

      .container {
        display: flex;
        flex-direction: column;
        padding: 3rem 3rem 5rem 3rem;
        gap: 1rem;
      }

      .box {
        background: rgba(255, 255, 255, 0.9);
        border: 5px ridge #C29BC7;
        margin-left: 200px;
        position: relative;
        z-index: 1;
      }

      .content {
        padding: 1rem;
      }
      
      .content a {
  color: #4F006B;           /* main purple */
  text-decoration: none;
}

.content a:visited {
  color: #4F006B;           /* keep visited the same purple */
}

.content a:hover {
  color: #C29BC7;           /* optional lighter purple highlight */
  font-weight: bold;
  text-shadow: none;
}

.content a:active {
  color: #4F006B;
  font-weight: normal;
}

      .subheaders {
        background-color: #000;
        color: #fff;
        border-bottom: 3px ridge #C29BC7;
        font-weight: normal;
        text-transform: uppercase;
        font-size: 16px;
      }

      a {
        color: #97D9E9;
        text-decoration: none;
      }

      .side1 a {
        color: #fff;
        text-decoration: none;
      }

      a:visited {
        color: #97D9E9;
      }

      .side1 a:visited {
        color: #fff;
      }

      a:hover {
        font-weight: bold;
        text-shadow: none;
      }

      .side1 a:hover {
        font-weight: normal;
        text-shadow: 0 0 5px #fff;
        color: #97D9E9;
      }

      a:active {
        font-weight: normal;
      }

      ::-webkit-scrollbar {
        width: 8px;
      }

      ::-webkit-scrollbar-track {
        background-color: #000;
      }

      ::-webkit-scrollbar-thumb {
        background-color: #C29BC7;
      }

      .side1::-webkit-scrollbar {
        width: 3px;
      }

      .side1::-webkit-scrollbar-track {
        background-color: #000;
      }

      .side1::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
      }

      /* Clear floats so the box encloses the floated image */
      .content::after {
        content: "";
        display: block;
        clear: both;
      }

      /* Make images inside .content scale down if needed */
      .content img {
        max-width: 100%;
        height: auto;
      }

      /* Desktop/tablet: keep your intended layout but avoid hard overflow */
      .hero-img {
        float: right;
        /* prefer max-width instead of fixed width; fallback to your inline width if larger */
        max-width: 45%;
      }

      /* Mobile tweaks */
      @media (max-width:750px) {
        .hero-img {
          float: none;
          display: block;
          max-width: 100%;
          margin: 0 0 10px 0;
          /* drop the left margin so it centers naturally */
        }

        /* If you applied the sidebar anchor cleanup, make them readable in a row */
        .side1 a {
          display: inline-flex;
          align-items: center;
          gap: .4rem;
          padding: .25rem .5rem;
        }
      }

      @media(max-width:750px) {
        body {
          background: rgb(255, 255, 255);
          background: linear-gradient(90deg, rgba(194, 155, 199, 1) 0%, rgba(79, 0, 107, 1) 18%, rgba(0, 0, 0, 1) 100%);
        }

        .bgimg {
          position: fixed;
          bottom: 0;
          left: 0;
        }

        .img {
          width: 300px;
        }

        .headerwrapper {
          position: relative;
          z-index: 4;
        }

        .header {
          margin: 0;
        }

        .headerborder {
          display: none;
        }

        .sidewrapper {
          position: relative;
          z-index: 5;
          position: sticky;
          top: 0;
        }

        .sidewrapper2 {
          display: flex;
          flex-direction: column;
          width: 100%;
        }

        .side1 {
          display: flex;
          flex-direction: row;
          flex-wrap: wrap;
          align-items: center;
          justify-content: center;
          width: 100%;
          height: auto;
          padding: 0.5rem;
          font-size: 18px;
        }

        .side1 img {
          width: 48px;
        }

        .side2 {
          width: 100%;
          height: 25px;
        }

        .container {
          padding: 1rem 1rem 4rem 1rem;
        }

        .box {
          margin: 0;
        }