.hero-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto; /* adjust as needed */
    overflow: visible;
  }
  
  #hero-profile-pic {
    position: relative;
    z-index: 2;
  }
  
  .orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(13, 90, 172, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  
  #orbitCanvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
  }