body {
  background-color: rgb(42, 39, 71);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::-webkit-scrollbar {
  display: none;
}
.navbar {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin-left: 5%;
  color: white;
  margin-top: 15px;
}

.left {
  display: flex;
}
.brand {
  position: relative;
  top: -5px;
}
.brand-name {
  font-size: 1.5rem;
  position: relative;
  top: -5px;
  margin: 3px;
  margin-right: 3vw;
  z-index: 10;
}
.brand a {
  text-decoration: none;
  color: white;
}
.brand a i {
  font-size: 2rem;
  position: relative;
  top: -2px;
}
.fav {
  z-index: 10;
}
.fav:hover {
  text-decoration: underline;
}
.right {
  display: flex;
}
.search {
  background-color: rgb(58, 54, 97);
  padding: 0.5rem 0.5rem;
  position: relative;
  top: -10px;
  margin-right: 1.5vw;
}
.search input {
  border: none;
  background-color: transparent;
  outline: none;
  color: white;
}
.notifications {
  margin-right: 1.5vw;
}
/*responsiveness for navbar*/
@media screen and (max-width: 620px) {
  .fav,
  .search {
    display: none;
  }
}

/*Main section*/
main {
  margin: auto;
  width: 90%;
  margin-top: 20px;
}
/*aside*/
aside {
  width: 30%;
  position: absolute;
  right: 4%;
  bottom: 5.2vh;
  top: 6vh;
  padding: 20px;
  overflow: auto;
}
.aside-header {
  display: flex;
  justify-content: space-between;
}
.Queue-header {
  color: white;
  font-size: 1.8rem;
  font-weight: 900;
}
.queue-list {
  color: rgb(111, 175, 173);
  position: relative;
  top: 10px;
  cursor: pointer;
}

.aside-list {
  margin-top: 20px;
  position: absolute;
  width: 90%;
  bottom: 5.2vh;
  top: 7vh;
  overflow: auto;
}
.list-item {
  display: flex;
  justify-content: space-between;
  color: rgb(211, 209, 209);
  padding: 10px;
}

.song-name {
  display: flex;
}
.count {
  position: relative;
  top: 12px;
  text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
}
.song-img {
  height: 50px;
  width: 50px;
  background-size: contain;
  border-radius: 20%;
  margin-right: 1vw;
  margin-left: 1vw;
}

.song-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.song {
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
}
.singer-name {
  font-size: 0.8rem;
}
.song-fav {
  position: relative;
  top: 10px;
  font-size: 1.5rem;
  cursor: pointer;
}

/*page Content*/
.page-content {
  width: 70%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 2rem;
  overflow: auto;
}

.corousel {
  margin-top: 20px;
  display: flex;
  width: 100%;
  height: 400px;
  padding: 20px;
  padding-bottom: 0;
}
input[type="radio"] {
  display: none;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}
#slide-1:checked ~ .slides #song-1,
#slide-2:checked ~ .slides #song-2,
#slide-3:checked ~ .slides #song-3 {
  transform: translatex(0) scale(1);
  opacity: 1;
  z-index: 1;
}
#slide-1:checked ~ .slides #song-3,
#slide-2:checked ~ .slides #song-1,
#slide-3:checked ~ .slides #song-2 {
  transform: translatex(-40%) scale(0.8);
  opacity: 0.4;
  z-index: 0;
}
#slide-1:checked ~ .slides #song-2,
#slide-2:checked ~ .slides #song-3,
#slide-3:checked ~ .slides #song-1 {
  transform: translatex(40%) scale(0.8);
  opacity: 0.4;
  z-index: 0;
}
.slide {
  position: absolute;
  width: 60%;
  height: 100%;
  left: 0;
  right: 0;
  margin: auto;
  transition: transform 0.4s ease;
  cursor: pointer;
}
.slider-img {
  width: 100%;
  height: 80%;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*latest releases*/
.latest-releases,
.artists {
  padding: 50px;
  padding-top: 0;
}
.latest-releases h1,
.artists h1 {
  color: white;
  margin-bottom: 4vh;
}
.latest-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.latest-item {
  width: 275px;
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
.item-img {
  height: 15vh;
  width: 15vw;
  margin-right: 2vw;
  z-index: 2;
}
.play-pause {
  position: absolute;
  font-size: 2.5rem;
  color: rgb(171, 233, 228);
  top: 28%;
  left: 11%;
  z-index: 1;
}
.item-img:hover {
  z-index: 0;
  opacity: 0.5;
}
.item-deatils {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.item-song-name {
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
}
.item-date {
  color: rgb(196, 189, 189);
}
.item-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.item-functions {
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgb(196, 189, 189);
}
.artists-list {
  display: flex;
  overflow: auto;
}
.artist-div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.artist {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  margin: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.5s;
}
.artist:hover {
  transform: scale(1.2);
  border: 2px solid white;
}
.artist-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
}

/*categories*/
.categories {
  display: flex;
  height: auto;
  width: 90%;
  margin: auto;
  flex-wrap: wrap;
  margin-bottom: 50px;
  justify-content: space-around;
}
.category {
  height: 150px;
  width: 250px;
  margin: 10px;
  position: relative;
  transition: all 0.5s;
}
.category:hover {
  transform: scale(1.2);
  opacity: 0.5;
}
.category-name {
  position: absolute;
  top: 40%;
  left: 35%;
  font-size: 1.5rem;
  color: white;
  font-weight: 400;
}

/*latest eng*/
.list-item-img {
  height: 100px;
  width: 100px;
  margin: 0 15px 10px 0;
}
.list-item-date {
  font-size: 0.8rem;
  color: aliceblue;
}

footer {
  height: 10vh;
  left: 0;
  width: 100vw;
  background-color: rgb(112 102 134);
  position: absolute;
  bottom: 0;
  z-index: 5;
}

/*footer*/
footer {
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
}
footer .song-details {
  display: flex;
  flex-direction: row;
}
.iimg {
  height: 100%;
  width: 70px;
  background-image: url("./Images/LatestHindi/Garmi.webp");
  background-size: cover;
  margin-right: 20px;
}

.nname,
.song-funcs {
  align-self: center;
  color: white;
  margin-right: 20px;
}
.Abcdef {
  font-size: 0.8rem;
}

.song-controller {
  width: 50%;
  text-align: center;
}
.upper-line {
  display: flex;
  justify-content: space-between;
  width: 50%;
  margin: auto;
  padding-top: 10px;
}
.fa-play-circle {
  position: relative;
  top: -5px;
}
.lower-line {
  position: relative;
  top: -10px;
  height: 10px;
  width: 80%;
  margin: auto;
  background-color: white;
}
.completed {
  width: 40%;
  background-color: #5bb84e;
  height: 10px;
}

.devices {
  display: flex;
  width: 8%;
  color: white;
  justify-content: space-between;
  align-items: center;
}
i {
  cursor: pointer;
}

/*artist page*/

#main {
  width: 70%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 4rem;
  overflow: auto;
}
.artist-queue {
  top: 45vh;
}
.similar .aside-list {
  bottom: 48vh;
}

.top-div {
  width: 100%;
  background-color: rgb(27, 36, 73);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.left-container {
  width: 250px;
  flex-grow: 2;
  height: 300px;
  background: url("./Images/Second-Page-Grid/main-1.jpg");
  background-size: cover;
  margin-right: 3vw;
}

.right-container {
  width: 450px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  color: rgb(185, 186, 187);
}

.top-header {
  display: flex;
  width: 90%;
  justify-content: space-between;
  margin-bottom: 15px;
}
.top-name {
  font-size: 1.8rem;
  color: white;
  font-weight: 800;
}
.bootom-row {
  display: flex;
}
.play-all,
.follow {
  background: linear-gradient(90deg, rgb(97, 97, 228), rgb(177, 45, 177));
  width: 8vw;
  height: 30px;
  text-align: center;
  padding-top: 5px;
  border-radius: 5%;
  cursor: pointer;
  margin-right: 15px;
}

.foolowers {
  margin-top: 10px;
  font-size: 0.8rem;
}

.bottom-list {
  width: 100%;
}
.item {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  background-color: rgb(27, 31, 54);
}
.left-item {
  display: flex;
  width: 250px;
  padding-left: 20px;
}
.left-count {
  padding-top: 25px;
  color: white;
  margin-right: 15px;
}
.item-iimg {
  background: url("./Images/LatestHindi/IshqTera.webp");
  height: 70px;
  width: 70px;
  background-size: contain;
  margin-right: 15px;
}
.item-deetails {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.item-singer {
  font-size: 0.7rem;
  color: aliceblue;
}
.item-right {
  color: white;
  padding-top: 20px;
  padding-right: 20px;
}

/* responsiveness*/
@media screen and (max-width: 850px) {
  .song-fav {
    display: none;
  }
  .devices {
    display: none;
  }
  footer {
    padding-right: 100px;
  }
}

@media screen and (max-width: 750px) {
  aside {
    display: none;
  }
  .page-content,
  #main {
    width: 100%;
  }
  .play-all,
  .follow {
    width: 100px;
  }
}
@media screen and (max-width: 620px) {
  .latest-releases,
  .artists {
    padding: 0;
    padding-bottom: 30px;
  }
  .item-img {
    margin-right: 3vw;
  }
  .page-content {
    bottom: 5vh;
  }
  footer {
    padding-left: 0;
  }
  footer {
    padding-right: 50px;
  }
  .play-pause {
    display: none;
  }
  #main {
    margin: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 480px) {
  footer .song-details {
    display: none;
  }

  footer {
    padding-left: 50px;
  }
  .song-controller {
    width: 100%;
  }
  .sliding-name {
    display: block;
  }
}
