/*
bg-
https://i.postimg.cc/9MZSx7mz/bg.jpg


*/


@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap');

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background: #FFF7D6;
  width: 100vh;
  overflow: ;
}

nav {
  height: 73px;
  background: black;
}

nav ul {

  display: flex;
  align-items: center;
  list-style: none;
  color: #fff;
}

nav ul li {
  padding: 0px 14px;
  font-size: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  font-size: 1.9rem;
  font-weight: 700;

}

.brand img {
  width: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 5px;
}


.bottom {
  position: sticky;
  height: 125px;
  background: black;
  color: #fff;

  /*for progress in center */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#progressbar {
  width: 100%;
  height: 50%;
  align-items: center;
  margin-bottom: 8px;
}

.icons i {
  cursor: pointer;
}

.container {
  min-height: 80vh;
  background: #000000;
  color: #fff;
  width: 93%;
  display: flex;
  margin: 25px 24px;
  border-radius: 12px;
  background-image: url("https://i.postimg.cc/9MZSx7mz/bg.jpg");
  background-repeat: no-repeat;
  background-position: 86% 97%;
  background-size: 79%;

}

.songItem img {
  width: 40px;
}

.timeStamp {
  margin: 0 5px;
}

.songItemContainer {
  margin-top: 44px;
}

.songItem {

  height: 50px;
  width: 70%;
  background: #fff;
  color: #000000;
  font-weight: 500;

  margin: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 26px;

}

.song_info {}

.song_info img {
  margin: 5px 7px;
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

@media (max-width:480px) and (min-width:320px) {
  .songItem {
    width: 70%;
  }

  .bottom {
    height: 100px;
  }


}
