
      @import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
      :root {
        --bg: #232431;
        --panel: #323645;
        --header: #323645;
        --border: #E0E0E0;
        --text: #f2f2f2;
        --muted: #BDBDBD;
        --accent: #787f9a;
        --radius: 14px;
      }
      
      body {
        margin: 0;
        font-family: Noto Serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        background: var(--bg);
        color: var(--text);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 50px 0px 50px 0px;
        
      }
      p {
        margin: 0;
      }
      a {
        text-decoration: none;
      }
      .container {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding-bottom: 45px;
      }
      .home-container {
        margin-top: 50px;
        padding: 0;
        border-radius: 15px;
        width: 600px;
        background-color: var(--panel);
        white-space: normal;
        overflow: hidden;
        color: white;
        padding-bottom: 25px;
      }
      .rewrapped-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        height: 90px;
      }
      .rewrapped-container h1 {
        text-align: center;
        font-size: 42px;
      }
      .rewrapped-container img {
        width: 40px;
        filter: brightness(0) saturate(100%) invert(87%) sepia(100%) saturate(0%) hue-rotate(341deg) brightness(104%) contrast(101%);
        margin-right: 5px;
      }
      .home-container h2 {
        font-size: 24px;
        margin-left: 10px;
        margin-right: 10px;
      }
      .upload-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 25px;
      }
      .page-heading {
          text-align: center;
          font-size: 36px;
          margin-top: 10px;
          margin-bottom: 20px;
      }
      h2.page-heading {
        margin-left: 25px;
        margin-right: 25px;
      }
      h2 {
        font-size: 24px;
      }
      .upload-input-container {
        display: flex;
        align-content: center;
        justify-content: center;
        align-self: center;
        width: auto;
        padding: 0px;
      }
      .upload-input-container input {
        display: none;
      }
      .upload-btn img {
        width: 18px;
        filter: brightness(0) saturate(100%) invert(87%) sepia(100%) saturate(0%) hue-rotate(341deg) brightness(104%) contrast(101%);
        margin-right: 5px;
      
      }
      .how-container {
        margin-top: 40px;
        text-align: left;
        width: 500px;
      }
      .how-step-container {
        display: flex;
        flex-direction: row;
        margin-bottom: 15px;
        background-color: var(--panel);
        padding: 20px 15px 20px 15px;
        border-radius: 10px;
      }
      
      .how-text-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .how-title {
        display: inline-block;
        text-align: left;
        font-size: 18px;
        font-weight: bold;
      }
      .how-text {
        color: var(--text-accent);
        margin-top: 10px;
      }
      .how-link {
          background-color: #626782;
          cursor: pointer;
          transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
          margin-bottom: 10px;
          margin-top: 15px;
          padding: 13px 20px;
          border-radius: 10px;
          display: flex;
          justify-content: center;
          font-size: 15px;
          font-weight: bold;
          transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.15s ease;
      }
      .how-link:hover {
        background-color: #6D738F;
      }
      .how-link span {
        color: white;
      }
      .how-link img {
          filter: brightness(0) saturate(100%) invert(87%) sepia(100%) saturate(0%) hue-rotate(341deg) brightness(104%) contrast(101%);
          width: 18px;
          margin-right: 10px;
      }
      
      
      .how-circle-container {
          display: flex;
          align-items: flex-start;
          justify-content: center;
          margin-right: 15px;
      }
      
      .circle {
          width: 26px;
          height: 26px;
          display: flex;
          justify-content: center;
          align-items: center;
          border-radius: 50%;
          text-align: center;
          font-size: 16px;
          font-weight: bold;
          background-color: white;
          color: black;
      }
      
      .circle span {
          display: inline-block;
          padding-top: 50%;
          padding-bottom: 50%;
          margin-left: 8px;
          margin-right: 8px;
      }
      .collapsible {
        background-color: var(--panel);
        color: white;
        cursor: pointer;
        padding: 18px;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 16px;
        font-weight: bold;
        font-family: Noto Serif;
        margin-top: 10px;
        margin-bottom: 0px;
        border-radius: 10px;
        transition: opacity 0.3s ease, max-height 0.3s ease-out;
      }
      .collapsible div {
      
      }
      .collapsible:hover {
        opacity: 0.8;
      }
      
      .collapsible:after {
        content: '\02795';
        font-size: 13px;
        color: white;
        float: right;
      
      }
      .collapsible.active + .content {
        max-height: 300px;
        transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .active:after {
        content: "\2796";
      }
      .content {
          background-color: #282B38;
          border-radius: 10px;
          padding: 0 18px;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
          width: calc(100% - 36px);
      }
      .content p {
          padding-top: 15px;
          padding-bottom: 15px;
          font-size: 16px;
          color: var(--text);
      }
      .content p a {
        color: white;
        text-decoration: underline;
      }
      .faq-container {
        margin-top: 50px;
        text-align: left;
        width: 500px;
        display: flex;
        align-items: center;
        flex-direction: column;
      }
      .faq-container h1 {
        margin-bottom: 10px;
      }
      .why-para {
        text-align: center;
        font-size: 18px;
      }
      
      .social-container {
        display: flex;
        flex-direction: row;
        align-self: center;
        margin-top: 50px;
        width: 275px;
        justify-content: space-between;
      }
      .social-link {
        font-weight: bold;
        color: white;
      }
      .social-container a img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(77deg) brightness(104%) contrast(101%);
        opacity: 0.15;
        width: 30px;
        height: 30px;
        margin-right: 10px;
        margin-left: 10px;
      }
      .privacy-container p {
        text-transform: none;
        margin-top: 15px;
      }
      .privacy-container h1 {
        text-transform: none;
      }
      .privacy-container h2 {
        text-transform: none;
        margin-top: 20px;
      }
      .privacy-container {
        width: 80vw;
        max-width: 600px;
        margin-top: 50px;
        padding-bottom: 75px;
      }
      .privacy-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 30px;
      }  
      @media (max-width: 700px){
        .home-container {
          width: 80vw;
        }
      }
      @media (max-width: 600px) {
        .how-container, .faq-container {
          width: 90vw;
        }
        .home-container {
          width: calc(90vw - 3%)
        }
      }
      
      @media (max-width: 500px) {
        .rewrapped-container h1 {
          font-size: 40px;
        }
        .home-container h2 {
          font-size: 22px;
        }
      }
      
      @media (max-width: 390px) {
        .how-link span {
          display: none;
        }
        .how-link::after {
            content: "spotify.com/...";
            display: inline;
            color: white;
          }
      }
      .privacy-container {
        width: 80vw;
        max-width: 600px;
        margin-top: 50px;
        padding-bottom: 75px;
      }
      .privacy-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 30px;
      }
      .privacy-arrow-container {
      }
      .privacy-arrow-container a {
        width: 30px;
        height: 30px;
      }
      .privacy-container p {
        text-transform: none;
        margin-top: 15px;
      }
      .privacy-container h1 {
        text-transform: none;
      }
      .privacy-container h2 {
        text-transform: none;
        margin-top: 20px;
      }
      #left-arrow {
        width: 30px;
        height: 30px;
        margin-right: 20px;
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(77deg) brightness(104%) contrast(101%);
      }
      .upload-btn {
        appearance: none;
        border: none;
        border-radius: 10px;
        padding: 12px 20px 12px 15px;
        width: 100%;
        font-size: 15px;
        font-weight: 600;
      
        background-color: #626782;
        color: white;
        font-family: Noto Serif;
        cursor: pointer;
        transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.15s ease;
      }
      .upload-btn:hover {
        background-color: #6D738F;
      }
      .upload-btn:hover:not(:disabled) {
        background: #6D738F;
      }
      
      .upload-btn:active:not(:disabled) {
        transform: translateY(1px);
      }
      
      .upload-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
      }
      