@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
* {
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
}
.Banner {
    top: 0;
    position: absolute;
    height: 25rem;
    width: inherit;
    background-image: url(svgs/sajjanBanner.jpg);
    background-size: cover;
}

.navbar20 {
    top: 0;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    position: sticky;
    padding: 5px;
    align-items: center;
    height: 49px;
    border-radius: 10px;
    z-index: 10;
}

.imageContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;  
    
}
.imageContainerTexts {
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.verified {
    display: flex;
    font-size: 0.8rem;
    align-items: center;
}
#name {
    font-size: 5rem;
    font-weight: 700;
}
#listeners {
    font-size: 1rem;
}
.songsContainer {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(#1d1d1d, black);
    height: 100vh;
}
#playBut {
    height: 2rem;
    width: 2rem;
    border: 2px solid white;
    padding: 10px;
    border-radius: 50%;
    background-color: rgb(87, 207, 87);
    border: none;
    cursor: pointer;
}
#playBut:hover {
    background-color: rgb(96, 226, 96);
}
.index2band {
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}
.follow {
    background-color: transparent;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    width: 5rem;
    font-size: 1rem;
    opacity: 0.7;
    cursor: pointer;
}
.follow:hover {
    opacity: 1;
}
#threedot {
    cursor: pointer;
    opacity: 0.7;
}
#threedot:hover {
    opacity: 1;
}
#popular {
    padding: 14px;
    font-size: 1.5rem;
    font-weight: 600;
}
.songs {
    display: flex;
    flex-direction: column;
    z-index: 10;
    padding: 15px;
}
.songImage {
    height: 35px;
}
.song {
    display: flex;
    padding: 8px;
    align-items: center;
    cursor: pointer;
}
.song:hover {
    background-color: #303030;
}
.songName {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    width: 30rem;
}
.plays {
    font-size: 0.8rem;
    opacity: 0.7;
    width: 20rem;
}
.duration {
    opacity: 0.7;
    font-size: 0.8rem;
}

#masterPlay {
    z-index: 100;
    position: fixed;
    /* border: 2px solid white; */
    color: white;
    width: 96.5vw;
    height: 2.8rem;
    background-color: rgb(0, 0, 0);
    align-items: center;
    /* display: flex; */
    display: none;
    padding: 5px 20px;
    bottom: 0;
    gap: 4rem;
}
#img-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

#song-img {
    width: 32px;
    height: 32px;
}

.icons img {
    filter: invert();
    height: 1.2rem;
    cursor: pointer;
}

#CurrentStart, #CurrentEnd {
    font-size: 13px;
}

#bar {
    position: relative;
    display: flex;
    background-color: inherit;
    height: 18px;
    width: 50%;
    align-items: center;
}

#seekbar {
    height: 18px;
    cursor: pointer;
    width: 100%;
} 

#dot::before {
    left: 1px;
    position: absolute;
    background-color: aqua;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    z-index: 9999;
}
.additional-icons {
    display: flex;
    gap: 10px;
    filter: invert();
}
