body {
    font-family: Arial, sans-serif;
    background-color: rgb(0, 0, 0);
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
  }
  
  .container {
    display: flex;
    width: 100%;
    height: 100vh;
  }
  
  .left-panel {
    width: 45%;
    background-color: #260023;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    overflow-y: auto;
  }
  
  .profile-pic {
    display: block;
    width: 80%;
    max-width: 250px;
    border-radius: 20px;
    margin: 20px auto;
  }
  
  .right-panel {
    width: 55%;
    background-color: #260023;
    color: #ffffff;
    overflow-y: scroll;
    padding: 20px;
    box-sizing: border-box;
  }
  
  #main-header {
    color: rgb(255, 255, 255);
    text-align: center;
  }

  h1 {
    font-size: 55px;
    margin-bottom: 10px;
  }
  
  h2 {
    color: #ffffff;
  }

  h3 {
    font-size: 35px;
  }
  
  p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff86;
  }
  
  a:link {
    color: #dddddd;
    text-decoration: none;
  }
  a:visited {
    color: #b5b5b5;
  }
  a:hover {
    color: #ff5de7;
  }

  a:active {
    color: #ba25a4;
  }

  .right-panel::-webkit-scrollbar {
    width: 12px;
  }
  
  .right-panel::-webkit-scrollbar-track {
    background: #46464600;
  }
  
  .right-panel::-webkit-scrollbar-thumb {
    background-color: #7272727c;
    border-radius: 5px;
    border: 2px solid #1e1e1e;
  }
  
  #footer-text {
    color: rgb(255, 255, 255);
    text-align: center;
  }

  body {
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background-color: black;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
  }
  
  #cursor-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 1200px;
    height: 1200px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(151, 28, 133, 0.315) 0%, rgba(0,0,0,0) 60%);
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  @media screen and (max-width: 768px) {
    .container {
      flex-direction: column;
    }
  
    .left-panel {
      width: 100%;
      height: 55%;
      padding: 15px;
    }

    .right-panel {
      width: 100%;
      height: auto;
      padding: 15px;
    }
  
    h1 {
      font-size: 40px;
    }
  
    h3 {
      font-size: 24px;
    }
  
    .profile-pic {
      width: 60%;
      max-width: 200px;
      margin: 0 auto 20px;
      display: block;
    }
  
    #main-header {
      font-size: 20px;
    }
  
    p, a {
      font-size: 15px;
    }
  
    #footer-text {
      font-size: 16px;
    }

    #cursor-light {
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
    }
  }