body {
    background-color: #f0f8ff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1, h2, h3 {
    font-family: "Fira Sans", sans-serif;
    color: #4B0082;
}

a {
    color: #32CD32;
    text-decoration: none;
}

a:hover {
    color: #2E8B57;
    text-decoration: underline;
}

.track-list {
    margin-top: 20px;
    padding: 0;
    list-style-type: none;
}

.track-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.track-list li:last-child {
    border-bottom: none;
}

.play-button {
    background-color: #32CD32;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
    transition-duration: 0.4s;
}

.play-button:hover {
    background-color: #2E8B57;
    color: white;
}

.footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #708090;
}