body{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: black;
    color: white;
    overflow: hidden;
}
.main{
    display: flex;
    height: 100vh;
    padding: .5rem;
}
.sidebar{
    width: 23.75rem;
    border-radius: 1rem;
    background-color: #000;
    margin-right: 0.5rem;
}
.main_content{
    flex: 1;
    overflow: auto;
    border-radius: 1rem;
    background-color: #121212;
    padding: 0 1.5rem 0 1.5rem;
}
.music_player{
    background-color: black;
    position: fixed;
    bottom: 0px;
    height: 4.5rem;
    width: 100%;
}
.nav{
    background-color: #121212;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center; /*as arranged in column, will centered in column, top and bottom same hight*/
    height: 7rem;
    padding:0.5rem 0.75rem;
}
a {
    text-decoration: none;
    color: white;
}
.nav-option{
    line-height: 2.5rem;
    opacity:0.70;
    padding: 0.5rem 0.75rem;
}
.nav-option:hover{
    opacity: 1;
}
.nav-option i{
    font-size: 1.25rem;
}
.nav-option a{
    font-size: 1rem;
    margin-left: 1rem;
}
.library{
    background-color: #121212;
    border-radius: 1rem;
    height: 100%;
    padding: 0.5rem 0.75rem;
    margin-top: .5rem;
}
.options{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.library-options img{
    height: 1.25rem;
}
.icons{
    font-size: 1.25rem;
    display: flex;
}
.icons i{
    opacity: 0.70;
    margin-right: 1rem;
    height: 1.80rem;
    width: 1.80rem;
    border-radius: 50%;
    padding-top: .45rem;
    text-align: center;
}
.icons i:hover{
    opacity: 1;
    background-color: #1c1b1b;
}
.box{
    height: 8.75rem;
    background-color: #232323;
    border-radius: 0.75rem;
    margin: 0.75rem 0 1.75rem 0;
    padding: 0.75rem 1rem;
}
.box-p1{
    font-size: 1rem;
    font-weight: 500;
}
.box-p2{
    font-size: 0.85rem;
    opacity: 0.75;
}
.badge{
    background-color: white;
    border: none;
    border-radius:100px;
    padding: .25rem 1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    height: 2rem;
    width: fit-content;
}
.dark-badge{
    background-color: black;
    color: white;
}
.dark-badge2{
    background-color: black;
    color: white;
    padding: .5rem;
    border-radius: 50%;
}
.sticky-nav{
    position: sticky;
    top:0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 1rem 0;
    background-color: #121212;
    z-index: 10;
}
.sticky-nav-icons img{
    margin-left: 1rem;
}
.sticky-nav-options{
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-item{
    margin: .5rem;
}
@media(max-width:1000px){
    .hide{
        display: none;
    }
}
.cards-container{
    display: flex;
    flex-wrap: wrap;
}
.card{
    background-color: #232323;
    padding: 1rem;
    justify-content: space-around;
    border-radius: .5rem;
    width: 9.5rem;
    margin-left: 3rem;
}
.card-img{
    border-radius: .5rem;
    width: 100%;
}
.card-title{
    font-weight: 700;
}
.card-info{
    font-size: .85rem;
    opacity:0.8;
}
h2{
    margin-left: 1.75rem;
}
.album_pic{
    /* margin-top: 5%; */
    height: 60px;
    border-radius: 10%;
}
.album{
    display: flex;
    align-items: center;
}
.control{
    display: flex;
    align-items: center;
    margin-right: 6%;
}
.control i{
    padding: 4%;
}
.music_player{
    display: flex;
    justify-content: space-between;
}
.player_controls img{
    height: 15px;
}
.player_controls{
    position: relative;
    top: 17px;
    left: 150px;
}
.player_controls img{
    padding: 0px 10px;
}
.playback_bar input{
    position: relative;
    top: 10px;
}