/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #1DB954;
    color: #fff;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
}

nav li {
    display: inline;
    margin-right: 20px;
}

main {
    padding: 20px;
}

/* Estilos para la sección de la lista de reproducción */
.playlist {
    margin-top: 20px;
}

.playlist-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.playlist-item {
    text-align: center;
    margin: 10px;
}

.playlist-item img {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
}