body {
  font-family: Arial, sans-serif;
  margin: 20px;
}

h2 {
  color: #2c3e50;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

.music-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
  line-height: 50%;
}

.music-item-title {
  font-weight: bold;
  margin-right: 20px;
  flex-grow: 1;
  line-height: 50%;
}

.music-item-links a {
  margin-right: 10px;
  color: #2980b9;
  text-decoration: none;
}

.music-item-links a:hover {
  text-decoration: underline;
}

