* {
  font-family: "Montserrat", sans-serif;
  font-family: "Roboto", sans-serif;


}

.main {
  display: flex;
  height: 150vh;
  padding: 0.5rem;
}

.sidebar {
  background-color: rgb(5, 0, 0);
  width: 350px;
  height: auto;
  margin-right: 0.5rem;

}

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

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

/*Sidebar Nav */
a,
i {
  text-decoration: none;
  color: white;
}

.nav {
  background-color: #151414;
  border-radius: 1rem;
  height: 100px;
  padding: 0.5rem 0.75rem;
  display: flex;
  margin-right: 0.5rem;

  flex-direction: column;
  justify-content: center;
  align-content: center;
  /* align-content: space-around; */
}

.nav-option {
  line-height: 3rem;
  opacity: 0.7;
}

.nav-option:hover {
  opacity: 1;
}

.nav-option i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  padding: 0.5rem;
}

.nav-option a {
  font-size: 1rem;
}

/* Sidebar Library */
.library {
  border-radius: 1rem;
  height: 100%;
  margin-right: 0.5rem;
}

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

.library .options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.5rem 0.75rem 0.5rem;
  padding: 0.5rem 0.75rem;
}

.library .options .icons i {
  padding: 0rem 0.5rem;
  font-size: 1.1rem;
}

/* Sidebar Boxes  */
.boxes {
  background-color: #232323;
  border-radius: 1rem;
  height: auto;
  margin: 0.75rem 0 0.75rem 0;
  padding: 0.75rem 1.25rem;
}

/* Box paragraph P1 P2 */
.box-p1 {
  font-size: 1rem;
  color: white;
  font-weight: 500;
}

.box-p2 {
  font-size: 0.75rem;
  color: white;
  opacity: 0.9;
  margin-top: 2rem;
}

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

/* Main Content Started */
/* Stickey Navbar */
.sticky-nav {
  position: sticky;
  top: 0;
  background-color: #232323;
  display: flex;
  justify-content: space-between;
  align-content: center;
  z-index: 1;
}

.nav-icons {
  padding-top: 1.2rem;
  padding: 1rem;
}

.nav-icons img {
  font-size: 2rem;
  width: 1.5rem;
}

.nav-badge button,
i {
  margin-right: 0.5rem;
}

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

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

}

/* Main Content Started */
/* Cards */

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

.card {
  background-color: #232323;
  color: white;
  width: 9.3rem;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-left: 1.5rem;
  margin-top: 1.5rem;
}

.card-img {
  width: 100%;
  border-radius: 0.5rem;
}

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

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

.head {
  color: white;
}

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

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

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

/* Music Player album */

.album {
  width: 25%;
  display: flex;
  justify-content: space-between;
}

.album .album-img {
  font-size: 3.5rem;
  margin-top: 1rem;
}

.album .para {
  color: white;
  font-size: 1rem;

}

.album .music-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}

.album .music-icons .fa-music {
  font-size: 1.56rem;
}

.player {
  width: 50%;

}

.controls {
  width: 25%;
}

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

.playback-bar {
  display: flex;
  justify-content: center;
  align-self: center;
}

.playback-bar span {
  color: white;
}

.palyer-control-icon {
  height: 1rem;
  margin-right: 2rem;
  opacity: 0.7;
}

.palyer-control-icon:hover {
  opacity: 1;
}

.progress-bar {
  width: 70%;
  appearance: none;
  background-color: transparent;
  cursor: pointer;

}

.progress-bar::-webkit-slider-runnable-track {
  background-color: #ddd;
  border-radius: 100px;
  height: 0.22rem;

}

.progress-bar::-webkit-slider-thumb {
  appearance: none;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background-color: #1bd760;
  margin-top: -0.35rem;
}

/*  Controls volume */

.control-icons {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  font-size: 1.25rem;
}

.volume {
  width: 40%;
}