*{
    box-sizing: border-box;
}
html,body{
    height: 100%;
    width: 100%;
}
.music-card {
    --main-color: #fff;
    --bg-color: #090909;
    --sub-main-color: #B9B9B9;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 95%;
    height: 100%;
    /* height: 478px; */
    background: var(--bg-color);
    border-radius: 20px;
    padding: 25px;
    transition: all .35s ease-in-out;
    max-height: 100%;
    overflow: hidden;
  }
  
  .card__menu {
    cursor: pointer;
  }
  
  .card__img {
    height: 124px;
    width: 124px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    background: #131313;
    border-radius: 100%;
  }
  
  .card__img svg {
    width: 154px;
    height: 154px;
    border-radius: 100%;
  }
  
  .card__title {
    font-weight: 500;
    font-size: 28px;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 10px;
  }
  
  .card__subtitle {
    font-weight: 400;
    font-size: 16px;
    color: var(--sub-main-color);
    text-align: center;
    cursor: pointer;
  }
  
  .card__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .card__time {
    font-weight: 400;
    font-size: 12px;
    color: var(--main-color);
  }
  
  .card__timeline {
    width: 100%;
    height: 4px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .card__timeline input[type="range"] {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    cursor: pointer;
  }
  
  .card__btn {
    border: none;
    background: transparent;
    cursor: pointer;
  }
  
  .card__btn path {
    fill: var(--main-color);
  }
  
  .card__btn-play {
    width: 60px;
    height: 60px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .card__btn-play path {
    fill: var(--bg-color);
  }
    
.songsContainer{
  color: white;
  width: 80%;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  padding: 10px 15px;
  padding-top: 2rem;
}

.songsContainer .song{
    height: 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 5px;
}

.songsContainer span:nth-of-type(2){
    width: 25px;
    cursor: pointer;
}
.songsContainer .play{
fill: white;
}
.songsContainer .pause{
fill: white;
display: none;
}

#music {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  gap: 20px;
  padding-top: 3rem;
}

.music_categories {
  display: flex;
  gap: 20px;
  position: absolute;
  margin-top: -3rem;
}

#music .music_category {
  border: 2px solid white;
  padding: 3px 5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#music .music_category:hover, #music .active {
  background-color: white;
  color: black;
}