.jumbotron {
  padding-top: 6rem;
  background-color: #7dedff;
}

#talents {
  background-color: #7dedff;
}

section {
  padding-top: 5rem;
}

.music-player {
width: 300px;
height: 150px;
background-color: #333;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.music-controls {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.music-controls button {
width: 40px;
height: 40px;
border-radius: 50%;
font-size: 20px;
cursor: pointer;
}
.music-info {
margin-bottom: 20px;
}
.music-info p {
color: #fff;
font-size: 16px;
margin-bottom: 10px;
}
.music-progress {
width: 100%;
height: 10px;
background-color: #555;
border-radius: 10px;
overflow: hidden;
}
.music-progress input[type="range"] {
width: 100%;
height: 10px;
background-color: #fff;
border: none;
border-radius: 10px;
cursor: pointer;
}
.music-progress p {
color: #fff;
font-size: 14px;
margin-top: 10px;
}
