html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    background-color: #000000;
    overflow: hidden;
}


#title {
    font-family: "Space Mono";
    font-size: 2em;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
    margin-bottom: 10px;
}

#about-me {
    font-family: "Space Mono";
    font-size: 1em;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
    margin-bottom: 20px;
    max-width: 90%;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
z-index: 0;
} 


#Spotify {
    position: relative;
    width: 90%;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
    margin-top: 50px;
}

#song-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#song-title {
    max-width: calc(100% - 75px);
    font-size: 1.3em;
    font-weight: bold;
    text-align: left;
    text-decoration: none;
    color: inherit;
}

#song-artists {
    font-size: 1em;
    text-align: left;
    color: #cccccc;
    text-decoration: none;
}

#song-artist {
    color: inherit;
    text-align: left;
    text-decoration: none;
}

#album-cover {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    isolation: isolate;
}

#song-text-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#duration-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#listening-time {
    font-size: 1em;
    text-align: left;
    flex: 0 0;
    width: 50px
}

#song-length {
    font-size: 1em;
    text-align: right;
    flex: 0 0;
    width: 50px
}

#duration-bar {
    flex: 1;
    margin: 0 10px;
    height: 5px;
    background-color: #444444;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    --progress-width: 0%;
}

#duration-bar::after {
    content: "";
    display: block;
    width: var(--progress-width);
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
}

