body {
      background-color: #ff0533;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
      font-family: 'Comic Sans MS', 'Chalkboard SE', sans-serif;
    }

    /* Player Container */
    .player-card {
      width: 700px;
      border-radius: 24px;
      padding: 25px;
      text-align: center;
    }

    /* Always Spinning Image */
    .spinning-art {
      width: 700px;
      height: 700px;
      margin: 0 auto 20px;
      border-radius: 50%;
      overflow: hidden;
      /* it is amazing */
      animation: spin 8s linear infinite reverse;
    }

    .spinning-art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

   

    /* Infinite Rotation Keyframes */
    @keyframes spin {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    /* Track Details */
    .track-title {
      font-size: 18px;
      font-weight: bold;
      color: #4a4a4a;
      margin: 0;
    }

    .track-artist {
      font-size: 14px;
      color: #9b9b9b;
      margin: 5px 0 20px;
    }

    /* Native Audio Player Styling */
    audio {
      width: 100%;
      height: 40px;
      border-radius: 20px;
      outline: none;
    }



