body {
  font-family: "Handlee", cursive;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
  overflow: hidden;
}

.main {
  display: flex;
  height: 100vh;
  padding: 0.5rem;
  margin-top:0.05rem;
}

.sidebar {
  background-color: black;
  width: 26.25rem;
  border-radius: 1rem; 
  margin-right: 0.5rem;
}

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

.main-content::-webkit-scrollbar {
  width: 12px;
}

/* Track */
.main-content::-webkit-scrollbar-track {
  background: #121212;
}

/* Handle */
.main-content::-webkit-scrollbar-thumb {
  background: #6868689d;
}

/* Handle on hover */
.main-content::-webkit-scrollbar-thumb:hover {
  background: rgba(154, 154, 154, 0.686);
}

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

a {
  text-decoration: none;
  color: white;
}

.nav {
  background-color: #121212;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 112px;
  padding: 0.5rem 0.75rem;
}

.nav-options {
  line-height: 2.5rem;
  opacity: 0.6;
  padding: 0.3rem 0.75rem;
}

.nav-options:hover {
  opacity: 1;
  cursor: pointer;
}

.nav-options i {
  font-size: 1.25rem;
}

.nav-options a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: 1rem;
}

.library {
  background-color: #121212;
  border-radius: 1rem;
  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 {
  margin-right: 0.5rem;
  padding: 0.5rem;
  opacity: 0.6;
}

.icons i:hover {
  opacity: 1;
  background-color: #ffffff0e;
  border-radius: 50%;
  cursor: pointer;
}

.box {
  background-color: #232323;
  height: 8.35rem;
  border-radius: 0.6rem;
  margin: 0.5rem 0;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
}

.box-p1 {
  font-size: 1rem;
  font-weight: bolder;
  margin: 0;
}

.box-p2 {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.badge {
  background-color: white;
  border: none;
  border-radius: 100px;
  padding: 0.25rem 1rem;
  font-weight: 700;
  height: 2rem;
  width: fit-content;
}

.badge:hover {
  cursor: pointer;
  scale: 1.04;
}

.dark-badge {
  background-color: black;
  color: white;
}

.bell {
  opacity: 0.5;
}

.sticky-nav {
  position: sticky;
  top: 0;
  background-color: #121212;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  z-index: 10;
}

.sticky-nav-icons img {
  height: 1rem;
  background-color: #ffffff0e;
  padding: 0.6rem;
  margin-right: 0.3rem;
  border-radius: 50%;
}

.sticky-nav-options {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-nav-options button,
.sticky-nav-user i {
  margin-left: 1rem;
}

.sticky-nav-user i {
  font-size: 1rem;
  background-color: #ffffff0e;
  padding: 0.6rem;
  border-radius: 50%;
}

.sticky-nav-options #download {
  margin-right: 0.2rem;
}

.sticky-nav-icons img:hover {
  cursor: no-drop;
}

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

.sticky-nav-options button:hover,
.sticky-nav-user i:hover {
  scale: 1.04;
  opacity: 1;
  cursor: pointer;
}

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

.heading-show p {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0.6;
  cursor: pointer;
  margin-right: 0.5rem;
}

.heading-show h2:hover,
.heading-show p:hover {
  text-decoration: underline;
  cursor: pointer;
}

.card {
  background-color: #181818;
  width: 11.85rem;
  height: 16.9rem;
  border-radius: 0.5rem;
  padding: 1rem;
  box-sizing: border-box;
  margin-right: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
}

.play {
  color: #1ed75ffa;
  position: absolute;
  left: 7.6rem;
  top: 8rem;
  font-size: 3rem;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.94);
  border-radius: 50%;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.6);
}

.card:hover .play {
  opacity: 1;
  transition: 0.4s;
  transform: translateY(-9px);
}

.card .play:hover {
  color: #1fdf65;
  transition: 0s 0s;
  scale: 1.04;
}

.card:hover {
  transition: 0.5s;
  background-color: #262626;
  cursor: pointer;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
}

.card:nth-child(5n) {
  margin-right: 0;
}

.card-image {
  width: 9.95rem;
  height: 9.85rem;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.6);
}

.card-title {
  font-size: 1rem;
  font-weight: 900;
  margin: 0;
}

.card-info {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.7;
  height: 2.4rem;
  margin: 0;
  margin-top: 0.5rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.04rem;
}

.card-content {
  height: 4.05rem;
  width: 9.85rem;
}

.artists .card img {
  border-radius: 50%;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
  object-fit: cover;
}

.footer {
  padding-top: 4.5rem;
  padding-bottom: 8.5rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.footer-box {
  padding: 0.25rem 0 2.5rem 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #4645457d;
}

.footer-link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 41.06rem;
  height: 13.4rem;
}

.footer-link #company {
  grid-column: 1 / span 1;
}

.footer-link #communities {
  grid-column: 2 / span 1;
}

.footer-link #useful-link {
  grid-column: 3 / span 1;
}

.footer-link div {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  margin-right: 1.5rem;
  width: 12.43rem;
  height: 11.4rem;
}

.footer-link div a {
  padding-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.89rem;
  opacity: 0.7;
}

.footer-link div a:hover {
  text-decoration: underline;
  opacity: 1;
  font-weight: 600;
}

.footer-link div #footer-head {
  font-weight: bold;
  font-size: 0.9rem;
  opacity: 1;
  text-decoration: none;
}

.footer-media i {
  font-size: 1rem;
  background-color: #292929;
  padding: 0.75rem;
  margin-left: 0.7rem;
  border-radius: 50%;
}

.footer-media i:hover {
  background-color: #464545e4;
  cursor: pointer;
}

.line-box {
  margin: 0;
  margin-top: 1.5rem;
  height: 2.5rem;
  padding-top: 1rem;
}

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

.essential-link a,
.copyright {
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  opacity: 0.7;
  margin-right: 1rem;
}

.essential-link a:hover {
  opacity: 1;
  font-weight: 600;
}


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

.album{
  width: 25%;
}

.player{
  width: 50%;
  padding-bottom: 0.5rem;
}

.player-controls{
  padding-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5%;
}

.controls{
  width: 25%;
}

.player-contorl-icon{
  height: 0.9rem;
  width: 1rem;
  margin-right: 1.5rem;
  opacity: 0.55;
}

.player-contorl-icon:hover{
  opacity: 1;
}

.play-button{
   height: 2rem;
   width: 2rem;
   opacity: 1;
}

.play-button:hover{
  scale: 1.06;
}

.playback-bar{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.3rem;
  margin-bottom: .25rem;
}

.progress-bar{
  
  margin: 0 0.4rem;
  appearance: none;
   outline: none;
   height: 0.2rem;
   width: 32rem;
   background-color: #464545e4;
   border-radius: .25rem;
   box-shadow: 0 0 5px rgba(0,0,0,1) ;
   overflow: hidden;
}

.progress-bar::-webkit-slider-thumb{
   appearance: none;
   height: 1rem;
   width: 10rem;
   border-radius: 50%;
   background-color: rgb(255, 255, 255);
   cursor: pointer;
   
}

.playback-bar span{
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  opacity: 0.7;
  display: inline-block;
}

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

.album img,.album div{
  margin-right: 10px;
}

#song-title{
  font-weight: 600;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
}

#song-info{
  font-family: "Poppins", sans-serif;
  font-size: 0.63rem;
  opacity: 0.7;
}

.about-song{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about-song p{
  margin: 0;
  padding: 0;
}

.album-picture{
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
}

.like-song{
  height: 1.3rem;
  width: 1.2rem;
  opacity: 0.7;
}

#song-title:hover,#song-info:hover{
  opacity: 1;
  text-decoration: underline;
  cursor: pointer;
}

.like-song:hover{
  opacity: 1;
  cursor: pointer;
  scale: 1.04;
}

.controls{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding-right: 1rem;
}

.controls img{
  height: 2.4rem;
  width: 1.5rem;
  padding: 0.25rem;
  opacity: 0.6;
  
}

.controls .make-small{
  /* box-sizing: border-box; */
  /* padding: 0; */
  height: 1.4rem;
  width: 1.2rem;
  padding: 0.4rem;
  opacity: 0.4;
}

.controls .make-smaller{
  height: 0.95rem;
  width: 1.2rem;
  padding: 0.3rem;
  opacity: 0.38;
}

.controls input{
  appearance: none;
  width: 5.8rem;
  border-radius: .25rem;
}

 .controls img:hover{
  opacity: 1;
  scale: 1.05;
  cursor: pointer;
}

.controls input::-webkit-slider-runnable-track{
  appearance: none;
   height: 0.2rem;
   overflow: hidden;
}

.controls input::-webkit-slider-thumb{
  appearance: none;
}

.controls input::-webkit-slider-runnable-track:hover{
  background-color: #1fdf65;
  cursor: pointer;
}

.controls input{
  margin-right: 0.4rem;
}

