@import url('https://fonts.googleapis.com/css2?family=Ubuntu&family=Varela+Round&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  background: linear-gradient(135deg, #121212, #1db954);
}

/* NAVBAR */
nav{
  font-family: 'Ubuntu', sans-serif;
}

nav ul{
  display: flex;
  align-items: center;
  list-style-type: none;
  height: 65px;
  background: rgba(0,0,0,0.9);
  color: white;
  padding: 0 20px;
}

nav ul li{
  padding: 0 15px;
  cursor: pointer;
}

.brand{
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.4rem;
}

.brand img{
  width: 42px;
  margin-right: 10px;
}

/* MAIN CONTAINER */
.container{
  min-height: 72vh;
  width: 75%;
  margin: 25px auto 150px;
  padding: 30px;
  color: white;
  font-family: 'Varela Round', sans-serif;
  border-radius: 15px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
}

/* SONG LIST */
.songItemContainer{
  margin-top: 40px;
}

.songItem{
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.15);
  margin: 14px 0;
  border-radius: 30px;
  padding: 0 20px;
  transition: all 0.25s ease;
}

.songItem:hover{
  background: rgba(255,255,255,0.3);
  transform: scale(1.03);
}

.songItem img{
  width: 45px;
  border-radius: 50%;
}

.songName{
  flex: 1;
  margin-left: 20px;
  font-weight: 500;
}

/* ICONS */
.timestamp{
  margin-right: 10px;
}

.timestamp i{
  cursor: pointer;
  font-size: 1.4rem;
  transition: 0.2s;
}

.timestamp i:hover{
  color: #1db954;
  transform: scale(1.2);
}

/* BOTTOM PLAYER */
.bottom{
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 130px;
  background: rgba(0,0,0,0.95);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(12px);
}

/* PROGRESS BAR */
#myProgressBar{
  width: 80%;
  cursor: pointer;
  accent-color: #1db954;
}

/* PLAYER ICONS */
.icons{
  margin-top: 12px;
  display: flex;
  gap: 30px;
}

.icons i{
  cursor: pointer;
  transition: 0.2s;
}

.icons i:hover{
  color: #1db954;
  transform: scale(1.2);
}

/* SONG INFO */
.songInfo{
  position: absolute;
  left: 10vw;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Varela Round', sans-serif;
}

.songInfo img{
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .container{
    width: 95%;
  }
}
