
body {
  background-color: #121212;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

nav {
  background-color: #1DB954;
  padding: 15px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.brand {
  font-weight: bold;
  font-size: 24px;
}

.container {
  padding: 20px;
}

.songItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #282828;
  margin: 10px 0;
  padding: 10px;
  border-radius: 10px;
}

.songItem img {
  height: 40px;
}

.bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #181818;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.controls i {
  font-size: 24px;
  margin: 0 15px;
  cursor: pointer;
}

#progressBar {
  width: 80%;
}

.songInfo {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

#gif {
  opacity: 0;
  transition: opacity 0.3s;
}
body {
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* So text is visible on background */
}
#playingGif {
    width: 100px;
    position: bottom 20px;
    top: 80px;
    right: 50px;
}
