@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Martel Sans", sans-serif;
    font-weight: 700;
    font-style: normal;

}

body {
    background-color: black;
    color: white;

}



.left {
    width: 20vw;

}

.right {
    width: 80vw;
    
}

.logo img {
    width: 30px;
    padding: 10px 2px 10px 2px;



}

.library {
    min-height: 550px;
    position: relative;
    padding: 10px 5px;


}

.lib {
    display: flex;
    justify-content: left;
    align-items: start;
    gap: 10px;
    font-size: larger;
}



.home ul li {
    list-style: none;
    display: flex;
    width: 20px;
    gap: 10px;
    padding: 10px 10px 10px 2px;
    font-weight: bold;


}

.footer {
    display: flex;
    font: 10px;
    color: white;
    gap: 15px;
    position: absolute;
    bottom: 0;
    flex-wrap: wrap;
    padding: 20px;

    height: fit-content;


}

a {
    color: rgb(220, 216, 216);
    font-size: 10px;
}

.header {
    display: flex;
    justify-content: space-between;
    background-color: rgb(44, 44, 44);
    box-shadow: 0px 0px 10px 0px black;
}

.header>* {
    padding: 5px;
}

.cardcontainer {
    flex-wrap: wrap;
    max-height: 65vh;
    overflow-y: auto;
}

.card {
    position: relative;
}

.card>img {
    width: 185px;
    border-radius: 5px;
    height: 200px;

}

.card {
    width: 185px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 10px;


}

.card>h2 {
    font-size: large;
}

.card>p {
    font-size: small;
    font-weight: 100;
}

.card>svg {
    background-color: rgb(3, 177, 0);
    border-radius: 100%;
    color: black;
    position: absolute;
    top: 195px;
    left: 140px;

    overflow: hidden;
    padding: 10px;
    opacity: 0;
    transition: top 0.5s ease-in, opacity 0.5s ease-in;

}

.card:hover>svg {
    opacity: 1;

    top: 140px;
}

.card:hover{
    background-color: rgb(79, 78, 78);
    transition: all 1s;
}

.signupbtn {
    background-color: rgb(44, 44, 44);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
    border: 0;
    color: white;
    font-size: 15px;
    margin-right: 5px;
    align-items: center;

}

.signupbtn:hover {
    font-size: 17px;
    padding-left: 0px;
    padding-right: 0px;

}

.loginbtn {
    background-color: rgb(137, 136, 136);
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    border: 0;

    font-size: 15px;
    margin-right: 5px;

}

.loginbtn:hover {
    background-color: rgb(34, 34, 34);
    font-size: 15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    color: white;

}

.playbar {
    position: sticky;
    box-shadow: 10px 10px 10px 10px black;
    bottom: -1px;
    padding: 20px;
    margin: 10px 10px 15px 10px;
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    gap: 20px;

}

.songbutton {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 2px 10px 10px 10px;
    width: 15%;
    
}

.songlist {
    margin: 20px 0px;
    padding: 5px 10px;
    width: 94%;
    overflow-wrap: anywhere;
    height: 350px;
    overflow-y: auto;
}

.songlist ul li {
    list-style-type: decimal;
    margin: 7px 0px 10px 0px;
    font-size: small;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    border: 1px solid;
    border-radius: 4px;
    padding: 10px 7px;

}

.playnow {
    display: flex;
    align-items: center;
}

.playnow>span {
    font-size: 12px;
    width: 60px;

}

.seekbar{
    height: 2px;
    width: 50%;
    justify-content: center;
    background-color: grey;
    position: absolute;
    bottom: 10px;
    border: 2px solid rgb(186, 185, 185);
    border-radius: 10px;
    cursor: pointer;
}

.circle{
    height: 15px;
    width: 15px;
    border-radius: 10px;
    background-color: aliceblue;
    position: absolute;
    bottom: -6px;
    left: 0%;
    transition: left 0.5s;
}

.songbutton> img{
    cursor: pointer;
    width: 34px;
    

}

.hamburger{
    display: none;
}
.close{
    display: none;
}

.songinfo{
    display: flex;
    justify-content: center;
    
        width: 40%;
    text-align: -webkit-center;
    align-items: center;
}

.songtime{
     display: flex;
    justify-content: center;
        width: 60%;
    text-align: -webkit-center;
    align-items: center;

}
.volume{
 display: flex;
    justify-content: center;
        width: 40%;
    text-align: -webkit-center;
    gap: 10px;
    align-items: center;
}
.vol{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
     cursor: pointer;
}

.range{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
   
}




@media (max-width: 1400px) {
  .left{
    
    position:absolute;
    left: -115%;
    z-index: 1;
    transition: all 0.3s;
    width: 100%;
    background-color: black;
  }
  .right{
    width: 100vw;
    min-height: 773px;

  }

  .playbar{
          height: 200px;
        width: 92vw;
        padding: 5px;
        gap: 34px;
        font-size: 14px;
        flex-direction: column;
       
        align-items: center;
    

  }
  

  .hamburger{
    display: inline;
    margin-top: 7px ;
    margin-left: 5px;
    margin-right: 10px;
    cursor: pointer;
  }
  .close{
    display: inline;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 25px;
  }
  .seekbar{
   margin-bottom: 0px;

    width: 95%;
  }
  .songtime{
    height: 50px;
    margin-bottom: 40px;
  }

  .songinfo{
    margin-top: 20px;
  }
  .cardcontainer{
    justify-content: center;
  }

  .vol>img{
    width: 20px;
    margin-left: 30px;
    height: 35px;
    
  }

  .volume{
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .vol{
    position: absolute;
    right: 10px;
    bottom: 17px;
  }
 


    
}