
body {
  background-color: #121212;
  color: white;
  font-family: 'VT323', monospace;
  margin: 0;
  padding: 0;
}
.music-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 12px;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
}
.music-player img#album-art {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.controls button, .volume button {
  background: none;
  border: none;
  cursor: pointer;
}
.controls img, .volume img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}
.song-info {
  flex-grow: 1;
  text-align: center;
}
