*{
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: aliceblue;

}
body{
    background-color: black;
    color: white;
}


.left{
    width: 25vw;
    padding: 10px;
    
}
.right{
    
    width: 75vw;
}



/* home menu */

.home ul{
    margin-top: 20px;
}
.home ul li{
    display: flex;
    /* border: 2px solid black; */
    width: 90px;
    list-style: none;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: aliceblue;
}
.logo{
    
    overflow: hidden;
    width: 150px;
    height: 35px;
    /* border: 2px solid white; */
}
.logo img{
    width: 100%;
    height: 100%;
    object-fit:cover;
    object-position: center;
    
    
}
.home ul li img{
   
    width: 30px;
}
.homeicon{
    position: relative;
    bottom: 4px;
}
.searchicon{
    position: relative;
    left: 3px;

}

/* library */


.close{
    position: absolute;
    right: 20px;
    top: 20px;
    display: none;
}

.hamburger{
    display: none;
    width: 35px;
}
.nav{
    display: flex;
    justify-content: center;
    align-items: center;
}
.library{
    margin-top: 10px;
    
    /* border: 2px solid black; */
    min-height: 81vh;
   position: relative;
}
.library-imge{
/* border: 2px solid white; */
width: 45px;
height: 45px;
overflow: hidden;
}
.library-imge img{

width: 100%;
height: 100%;
object-fit: contain;
object-position: center;
}
.heading{
    background-color: #212121;
    box-shadow: 0px 0px 5px #000000;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.footer{
    display: flex;
    font-size: 10px;
    gap: 10px;
    flex-wrap: wrap;
    position: absolute;
    bottom: 0;
}
.footer a{
    color: grey;
}

/* song library list */
.songList{
    /* border: 2px solid white; */
    margin: 0px 20px;
    background-color: #1d1d1d;
    height: 67vh;
    
    padding: 0px 10px;
    overflow: auto;
}
.songList ul li{
    list-style: none;
    list-style-type: decimal;
    display: flex;
    gap: 20px;
    cursor: pointer;
    margin: 10px 0px;
    padding: 10px 10px;
    /* border: 2px solid white; */
    position: relative;
    align-items: center;
    border-radius: 5px;
    background-color: #151515;
    border-radius: 5px;
    overflow: hidden;
}
.songList ul li:hover{
    box-shadow: 0px 0px 15px #000000;
}
.playnow{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    /* border: 2px solid white; */
    position: absolute;
    right: 0;
    background-color: #272727;
    border-radius: 10px;
    padding: 5px;
    z-index: 100;
    
}
.info div{
    word-break: break-all;
}
.info div:hover{
 text-decoration: underline;
}

.songInfo{
    /* border: 2px solid white; */
    width: 350px;
}
.songTime{
    width: 350px;
    /* border:2px solid white; */
    text-align: right;
}
/* .playnow span{
    font-size: 13px;
    margin-bottom: 3px;
} */







/* Rightside */

/* header */

.right{
    margin:10px 0;
    margin-right: 10px;
    height: 98vh;
}
.header{
    display: flex;
    justify-content: space-between;
    background-color:#1a1919;
    
}
.header > *{
    padding: 10px;
}

.buttons button{
   
    outline: none;
    border: none;
    /* padding: 5px 12px; */
    border-radius: 20px;
    font-weight: bold;
    margin: 0px 5px;
}
.logIn{
    background-color: #252525;
    color: aliceblue;
    padding: 5px 12px;
    margin-left: 50px;
}
.signUp{
    padding: 5px 12px;
    color: #1a1919;
    background-color: rgb(204, 204, 204);
    padding: 5px 11px;
}
.logIn:hover{
    
    background-color: #303030;
    cursor: pointer;
    
}
.logIn:active{
    background-color: #393939;
}
.signUp:hover{
    
    background-color:rgb(229, 229, 229);
    cursor: pointer;
}
.signUp:active{
    background-color:rgb(255, 255, 255);
}
.myPlayList{
    box-shadow: 5px 20px 15px rgb(11, 11, 11);
    padding: 10px;
    
}


/* playlist box */

.spotifyPlaylist{
    padding: 5px 0px;
    position: relative;
    /* border: 2px solid white; */
}

/* card */
.card{
    /* border: 2px solid white; */
    background-color: #252525;
    border-radius: 5px;
    width: 206px;
    height: 240px;
    margin: 5px 5px;
    cursor: pointer;
}
.card:hover{
    background-color: #2f2f2f;
    box-shadow: 0px 0px 30px rgb(0, 0, 0);
    scale: 101%;
}
.card > *{
    padding-top: 3px;
}
.card h2 , p{
    margin-left: 6px;
}
.card h2:hover , p:hover{
    text-decoration: underline;
}
.card-img-size{
    position: relative;
    width: 200px;
    height: 170px;
    overflow: hidden;
    border-radius: 5px;
    padding: 3px 3px;
    cursor: pointer;
}
.card-img-size:hover{
   scale: 101%;
}
.card-img-size:hover .playButtonCard{
    opacity: 1;
    cursor: pointer;
    bottom: 10px;
}

.card-img-size img{
    width: 100%;
    height: 100%;
    object-fit:cover;
    object-position: center;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.card-container{
    display: flex;
    /* border: 2px solid white; */
    height: 80vh;
    flex-wrap: wrap;
    margin: 20px;
    margin-top: 0;
    overflow-y: auto;
}


.playButtonCard{
    position: absolute;
    right: 10px;
    bottom: 6px;
    background-color: rgb(0, 80, 93);
    border: 2px solid white;
    border-radius: 30px;
    width: 45px;
    height: 45px;
    opacity: 0;
    transition: all .3s ease-in-out;
    z-index: 10;
}





/* play bar */
.playbar{
    position: fixed;
    bottom: 10px;
    background-color: #212121;
    width: 71.5%;
   box-shadow: 0px 0px 15px rgb(10, 10, 10);
    
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-direction: column; */
    
    /* gap: 10px; */
    transition: all .5s ease-in-out;

    padding: 10px 5px;
}
.songButtons{
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    transition: all .5s ease-in-out;
    scale: 130%;

    position: relative;
    left: 50px;
    
}
.songButtons img:hover{
    cursor: pointer;
    /* background-color: rgb(27, 90, 149); */
    background-color: rgb(4, 113, 197);
    border-radius: 50px;
    padding: 5px;
}
.volume{  
    scale: 80%;
    /* padding: 10px; */
    margin-top: 2px;
    display: flex ;
    justify-content: center;
    align-items: center;
}
.volumeDiv{
    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    bottom: 1px;
    right: 7px;
}

/* .volumeRange{
    width: 70px;
    margin-top: 4px;
    
} */



/* seekbar */
.seekbar{
    height: 2px;
    width: 99%;
    border: 1px solid rgb(239, 239, 239);
    position: absolute;
    bottom: 4px;
    border-radius: 10px;
    background-color: white;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.circle{
    width: 6px;
    height: 6px;
    border: 2px solid rgb(33, 172, 182);
    border-radius: 50px;
    background-color: rgb(33, 172, 182);
    position: relative;
    
    left: -.5%;

    transition: left 0.5s;
    
}
.songInfo{

   font-weight: bold;

}
.songInfo:hover{
    text-decoration: underline;
}

.songTime{
    position: relative;
    /* border: 2px solid white; */
}




/* Media for small screen */

@media (max-width: 1200px) {
    .left{
        /* background-color: white; */
        position: absolute;
        left: -110%;
        transition: all .7s ease-out;
        z-index: 1;
        width: 340px;
        background-color: #000000;
        
    }

    .right{
        width: 100vw;
        margin-left: 10px;
    }

    .header{
        display: flex;
        align-items: center;

    }


    .spotifyPlaylist{
        height: 100vh;
    }

    .songInfo{
        /* border: 2px solid white; */
        width: auto;
    }
    .songTime{
        width: auto;
        /* border:2px solid white; */
        text-align: right;
    }
    .songButtons{
        margin: 10px;
        scale: 130%;
    }
    .playbar{
        width: 93vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background-color: #052533;
        
    }
    .seekbar{
        width: 98%;
    }

    .card-container{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        height: 53vh;
    }




    .hamburger{
        display: block;
        padding: 5px;
    
    }
    .hamburger:active{
        background-color: rgb(243, 168, 151);
        border-radius: 10px;
        scale: 110%;
        
    }
    .close{
       
        display:block;
    }
    .close:hover{
        cursor: pointer;
    }
    .close:active{
        scale: 110%;
    }

    .card{
      
        width: 250px;
        height: 260px;
        margin: 5px 5px;
        
    }
    .card-img-size{
        
        width: 243px;
        height: 190px;
        
        border-radius: 5px;
        padding: 3px 3px;
       
    }

    .songButtons{

        position: relative;
        left: 45px;
    }
    
}

