body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  background-color: #000;
  color: #fff;
  overflow: hidden;
  cursor: default;
}

.main {
  display: flex;
  height: 100vh;
}

.sidebar {
  background-color: #000;
  width: 400px;
  
}

.main-content {
  background-color: #121212;
  flex: 1;
  border-radius: 1rem;
  overflow: auto;
  margin: 0.5rem 0.5rem 0.5rem 0;
  height: 100%;
  padding: 0 1.5rem 1.5rem 1.5rem;
  
}

.music-player {
  background-color: black;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 72px;
}

a {
  text-decoration: none;
  color: #fff;
}
.nav {
  background-color: #121212;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100px;
  padding: 0.5rem 0.75rem;
  margin: 0.5rem 0.5rem;
}

.nav-option {
  line-height: 2.5rem;
  opacity: 0.7;
  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: 0.5rem;
  margin: 0.5rem 0.5rem;
  height: 100vh;
  padding: 0.5rem 1.25rem;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icons {
  font-size: 1.25rem;
  margin-right: 1rem;
  display: flex;
}
.icons i {
  opacity: 0.7;
  padding-left: 1rem;
}
.icons i:hover {
  opacity: 1;
}

.lib-option img {
  height: 1.25rem;
  width: 1.25rem;
}

.boxes {
  background-color: #232323;
  border-radius: 0.5rem;
  height: fit-content;
  margin: 0.5rem 0 1.25rem 0;
  padding: 0.75rem 1rem;
}

.box-p1 {
  font-size: 1rem;
  font-weight: 600;
}

.box-p2 {
  font-size: 0.85rem;
  opacity: 0.9;
}

.badge {
  background-color: #fff;
  border: none;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  font-weight: 600;
  margin: 0.5rem 0;
  height: 2rem;
  width: fit-content;
}

.sticky-nav {
  position: sticky;
  top: 0;
  background-color: #121212;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;

}

.sticky-nav-icons button i {
  height: 1.25rem;
  width: 1.25rem;
  padding: 0.5rem;
}

.sticky-nav-icons button {
  margin-right: 0.5rem;
}

.sticky-nav-icons {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.sticky-nav-options {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0.75rem;
}

.nav-item {
  margin-right: 1rem;
}

.dark-badge {
  background-color: #000;
  color: #fff;
}

.user {
  background-color: #000;
  color: #fff;
  border-radius: 100px;
  border: none;
  height: 2rem;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.user i {
  margin: 1rem;
  font-weight: 500;
  opacity: 0.7;
}
.user i:hover {
  opacity: 1;
}

@media (max-width: 1000px) {
  .hide {
    display: none;
  }
}

.card{
    display: flex;
    flex-direction: column;
    background-color: #232323;
    padding: 1rem;
    
    width: 150px;
    border-radius: 0.5rem;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    
}

.card-img{
    border-radius: 0.5rem;
}
.cards-container{
    display: flex;
    flex-wrap: wrap;
        
}

.card-title{
    font-weight: 600;
}

.card-info{
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer{
    height:300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line{
    width: 90%;
    height:70%;
    border-top:1px solid white;
    opacity: 0.7;
}

.music-player{
    display:flex;
    justify-content: space-between;
    align-items: center;
}

.player{
    width: 50%;
}

.player-controls{
    display:flex;
    justify-content: center;
    align-items: center;
}
.player-control-icon{

    margin:0 1rem 0 1rem;
    opacity: 0.7;
    font-size: 1.25rem;
}
.player-control-icon:hover{
    opacity: 1;
}

.playback-bar{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem 0 0.5rem ;
    font-size: smaller;
}

.progress-bar{
    width: 70%;
    appearance: none;
    background-color: transparent;
    padding: 0.5rem;    
}

.progress-bar::-webkit-slider-runnable-track{
    background-color: #ddd;
    border-radius: 1rem;
    height: 0.25rem;
}
.progress-bar::-webkit-slider-thumb{
    appearance: none;
    height: 0.75rem;
    width: 0.75rem;
    background-color: #1bd760;
    border-radius: 50%;
    margin-top: -4px;
}

.controls{
    width: 25%;
}

.album{
  width:25%;
  display: flex;
  align-items: center;
  padding: 1rem;
  
}

.cover img{
  width: 3rem;
  height: 3rem;
  border-radius: 0.25rem;
}

.album-desc{
  text-align: left;
  width:fit-content;
  padding: 1.5rem 2rem 2rem 1rem ; 
  
}
.album-desc p{
  height: 0.5rem;
}
.album-desc p:hover{
  text-decoration: underline;
  cursor: pointer;
}

.album-options{
  display: flex;
  align-items: center;
  font-size: 1rem;
  opacity: 0.7;
}
.album-options:hover{
  opacity: 1;
  cursor: pointer;
}

.controls{
  display: flex;
  justify-content: center;
  align-items: center;
}

.control-icon{
  height: 2rem;
  width: 1.5rem;
  padding: 0.2rem;
  opacity:0.7;
}
.control-icon:hover{
  opacity: 1;
}
.volume{
  width: 30%;
  appearance: none;
    background-color: transparent;
}

.control-icon-1{
  opacity:0.5;
}
.control-icon-1:hover{
  opacity:0.7;
}

.volume::-webkit-slider-runnable-track{
  background-color: #ddd;
  border-radius: 1rem;
  height: 0.25rem;
}
.volume::-webkit-slider-thumb{
  appearance: none;
  height: 0.75rem;
  width: 0.75rem;
  background-color: #1bd760;
  border-radius: 50%;
  margin-top: -4px;
}

.badge{
  opacity: 0.7;
  z-index: 20;
}

.badge:hover{
  opacity: 1;
}