body{
  font-family: "Montserrat", sans-serif;
  margin:0;
  color:azure;
 background-color:black;
  overflow:hidden;
}
.main{
    display: flex;
    height: 100vh;
    padding:0.5rem;
}
.main-content{
    background-color: #121212;
    flex:1;
    border-radius: 1rem; /*16px*/
    overflow:auto;/* allows the content to scroll if it overflows */
    padding:0 1.5rem 0 1.5rem;
}
.sidebar{
    background-color: #000;
    width:300px;
    border-radius: 1rem;
    margin: 0.5rem;
}
.music-player{
    background-color:black;
    width: 100%;
    height:72px;
    position: fixed;
    bottom: 0;
}
a{
    text-decoration: none;
    color: #fff;
}
.nav{
    background-color: #121212;
    border-radius: 1rem;
    display:flex;/* makes the nav bar horizontal */
    flex-direction: column;/* makes the nav bar vertical */
    justify-content: center;/* centers the items vertically */;
    height:100px;/* sets the height of the nav bar */
    padding: 0.5rem 0.75rem;/* sets the padding of the nav bar */
}
.nav-option{
    line-height: 2.5rem;/* sets the line height of the nav bar */
    opacity:0.7;/* sets the opacity of the nav bar */
    padding:0.5rem 0.75rem;
}
.nav-option:hover{
    opacity:1;/* sets the opacity of the nav bar on hover */
}
.nav-option i{
    font-size: 1.25rem;/* sets the font size of the nav bar icons */
}
.nav-option a{
    font-size:1rem;/* sets the font size of the nav bar links */
    margin:1rem;
}
.library{
    border-radius: 1rem;
    background-color: #121212;
    height: 100%;
    margin-top: 0.5rem;
    padding:0.5rem 0.75rem;
}
.options{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.lib-options img{
    height: 1.25rem;
    width: 1.25rem;
}
.icons{
    font-size: 1.25rem;
    display: flex;
}
.icons i{
    opacity:0.7;
    margin-right: 1rem;
}
.icons i:hover{
    opacity: 1;
}
.box{
    background-color: #232323;
    border-radius: 0.75rem;
    height:8rem;
    margin:0.75rem 0 0.75rem 0;
    padding: 0.75rem 1rem;
}
.box-p1{
    font-size:1rem;
    font-weight:500;
}
.box-p2{
    font-size: 0.75rem;
    opacity: 0.9;
}
.badge{
    background-color: #fff;
    border:none;
    border-radius: 100px;
    padding:0.25rem 1rem;
    font-weight:700;
    margin-top:0.5rem;
    height:2rem;
    width: fit-content;
}
.dark-badge{
    background-color: #121212;
    color: #fff;
}
.box2{
    height:10rem;
}
.sticky-nav{
    position: sticky;/* makes the nav bar sticky */
    top: 0;/* sets the top position of the nav bar */
    background-color: #121212;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 1rem 0;
    z-index:10;/*means the nav bar will be on top of other elements */
    
}
.sticky-nav-icons{
    margin-left: 0.75rem;
}
.sticky-nav-options{
    display: flex;
    align-items: center;
    margin-right: 0.75rem;
}
.nav-item{
    margin-right: 1.5rem;
}
@media (max-width: 1000px){/* media query for screens smaller than 1000px */
    .hide{
        display: none; /* hides the element */
    }
}
.card{
    background-color: #232323;
    width:150px ;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-left: 1.5rem;
    margin-top: 1rem;
}
.cards-container{
    display: flex;
    flex-wrap:wrap; /* allows the cards to wrap to the next line */
}
.card-img{
    width:100%;
    border-radius: 0.5rem;
}
.card-title{
    font-weight: 600;
}
.card-info{
    font-size: 0.85rem;
    opacity: 0.5;
}
.footer{
    height:300px;
    display: flex;/*means the footer will be a flex container*/
    align-items: center;/* centers the items vertically */
    justify-content: center;/* centers the items horizontally */
}
.line{
    width:90%;
    height:50%;
    border-top: 1px solid #fff;
    opacity: 0.4;
}
.music-player{
    display: flex;
    justify-content: space-between;/* means the items will be spaced evenly */
    align-items: center;/* centers the items vertically */
}
.album{
    width: 25%;
}
.player{
    width: 50%;
    
}
.controls{
    width: 25%;
}
.player-control{
    display: flex;
    justify-content:center;
    align-items: center;/* centers the items vertically */
}
.player-control-icon{
    height: 1rem;
    margin-right: 1.75rem;
    opacity: 0.7;
}
.player-control-icon:hover{
    opacity: 1;
}
.playback-bar{
    display: flex;
    align-items: center;/* centers the items vertically */
    justify-content: center;/* centers the items horizontally */
}
.progress-bar{
    width: 70%;
    appearance: none;/* removes the default appearance of the progress bar */
    background-color: transparent;/* makes the background transparent */
    cursor: pointer;/* changes the cursor to a pointer */
}
.progress-bar::-webkit-slider-runnable-track{
    background-color: #ddd;
    height: 0.2rem;/* sets the height of the progress bar */
    border-radius: 100px;/* makes the progress bar rounded */
}
.progress-bar::-webkit-slider-thumb{
    appearance: none;
    width: 1rem;
    height: 1rem;
    background-color: #1bd760;
    border-radius: 50%;
    margin-top: -6px;/* centers the thumb on the track */
}
.album{
    display: flex;
    align-items: center;/* centers the items vertically */
    width:3.5rem;
}
.song-info{
    display: flex;
    flex-direction: column;/* makes the song info vertical */
    margin-right: 6rem;
}
.artist{
    font-size: 0.75rem;
    opacity: 0.7;
    display: flex;
    margin-block-end: 1.5rem;
}