* {
  padding: 0px;
  margin: 0px;
}

body {
  background-image: linear-gradient(to right, #fedc5a 0%, #fed957 100%);
}

/* navigation bar  */
nav {
  font-family: "Bree Serif", serif;
}
ul {
  display: flex;
  list-style: none;
  height: 70px;
  background: linear-gradient(to right, black 0%, #434343 100%);
  color: white;
  align-items: center;
  justify-content: space-between;
}
nav ul li {
  padding: 0px 10px;
  font-size: 2rem;
}
.searchbox {
  display: flex;
  padding: 20px;
}
.searchbox input {
  height: 1.8rem;
  width: 100%;
  padding: 0px 8px;
  margin: 10px 5px 0px 10px;
  border-radius: 8px;
}
.searchbox button {
  background: transparent;
  color: white;
  font-size: 30px;
  margin: 2px;
  padding: 4px;
  height: 50%;
  cursor: pointer;
  border-radius: 20px;
  border: none;
}
.searchbox .fa-search {
  margin: 17px 0px 0px 0px;
}
.searchbox .search-icon {
  margin: 10px 0px 0px 0px;
}
#autoplay{
  font-family: "Bree Serif", serif;
}
/* logo  */

#logo {
  display: flex;
  align-items: center;
}
#logo i {
  font-size: 3rem;
  padding: 0px 7px;
  color: rgb(249 190 0);
  /* background-color: black; */
  border-radius: 500px;
}
#logo span {
  font-size: 1.5rem;
  font-family: "comic sans ms";
}

/* container  */
.container {
  min-height: 70vh;
  font-family: "Baloo Bhaijaan 2", cursive;
  display: flex;
  width: 80%;
  margin: 23px auto;
  padding: 23px 34px;
  border-radius: 21px;
  background: url("spotify-bg.jpg") center center/cover;
  box-shadow: 12px 16px #0000009e;
}
.songlist {
  width: 50%;
}
/* songs  */

.songItems {
  font-family: "Bree Serif", serif;
  height: 50px;
  display: flex;
  color: rgb(255, 255, 255);
  margin: 12px 0px;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  border-radius: 10px;
  background: linear-gradient(to right, #000000c9 0%, #00000073 100%);
}
.songItemplay {
  cursor: pointer;
}
.songItems img {
  height: 100%;
  width: 50px;
  border-radius: 10px;
  margin: 5px;
}

/* bottom  */

#bottom {
  position: sticky;
  bottom: 0;
  height: 160px;
  background-image: linear-gradient(to right, black 0%, #434343 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}
#myprogressbar {
  width: 80vw;
  cursor: pointer;
  background: black;
}
#bottom .icons {
  margin: 12px 0px;
}
.icons .fa-search {
  padding: 0px 10px;
  cursor: pointer;
}
.bottomElement {
  display: flex;
  justify-content: space-between;
  /* border :2px solid white; */
  align-items: center;
  width: 80vw;
}
#paause {
  display: none;
}
.songInfo,
#time {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.songInfo img {
  height: 100%;
  width: 123px;
  margin: 5px 0px;
}
#masterSongName,
#time {
  font-size: 25px;
  margin: 0px 4px;
}
#masterimage {
  margin-left: 2.5px;
  height: 100%;
  width: 50px;
  border-radius: 10px;
}

.menu {
  margin: 20px 0px 0px 20px;
  height: 50%;
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
}
.lines {
  height: 4px;
  width: 30px;
  margin: 2px;
  color: whitesmoke;
  background-color: whitesmoke;
  border-radius: 5px;
}
footer{
  background-color: black;
  text-align: center;
  font-size: 20px;
  color: white;
}
/* media */

@media (max-width: 925px) {
  .songlist {
    width: 70%;
  }
}
@media (max-width: 625px) {
  .container {
    width: 70%;
    background: #f5bb00;
  }
  .songlist {
    width: 100%;
  }
  button.fa-search {
    display: none;
  }
  .fa-search {
    display: none;
  }
}
@media (max-width: 515px) {
  .songItems {
    font-size: 1rem;
  }
  #masterSongName,
  #time {
    font-size: 18px;
  }
  .songInfo img {
    width: 50px;
  }
}
@media (max-width: 450px) {
  .songItems {
    font-size: 0.8rem;
  }
  
}
@media (max-width: 425px) {
#autoplay{
   font-size: 20px;
  }
}
