body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: #f0f8ff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    color: #333;
    margin-top: 0;
}

a, a:visited {
    color: #007acc;
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: underline;
}

.header {
    background-color: #3cb371;
    color: white;
    padding: 10px 15px;
    text-align: center;
}

.footer {
    background-color: #2e8b57;
    color: white;
    text-align: center;
    padding: 5px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.nav {
    list-style-type: none;
    text-align: center;
    padding: 0;
}

.nav li {
    display: inline;
    margin: 0 15px;
}

.button {
    background-color: #5f9ea0;
    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: 4px;
    transition-duration: 0.4s;
}

.button:hover {
    background-color: #4caf50;
    color: white;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.music-section {
    border-bottom: 2px solid #3cb371;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.track-listing {
    padding: 15px;
    margin-top: 15px;
    background-color: #e0f7fa;
    border-radius: 8px;
}

.track-name {
    font-weight: bold;
    color: #00695c;
}

.artist-name {
    color: #00897b;
}