@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.hero {
  width: 100%;
  height: 100vh;
  background: #a9a9a9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.music {
  width: 90%;
  max-width: 900px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0 0 0 /0.4);
  background: #fff;
  color: #555;
  border-radius: 8px;
}

.track{
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.track img{
  width: 70px;
  margin-right: 30px;
  cursor: pointer;
}

.track div{
  flex: 1;
}
