body {
    margin: 0;
    padding: 0;
    background: #121212; 
    font-family: 'Arial', sans-serif;
    color: white;
    text-align: center;
}


h1 {
    font-size: 40px;
    margin-top: 30px;
    font-weight: 800;
    color: #1DB954; 
}

p {
    font-size: 18px;
    margin: 10px 0;
}


#app-container {
    width: 90%;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: #181818;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}


#imagen {
    width: 90%;
    max-width: 350px;
    border-radius: 15px;
    margin-top: 15px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.4);
}


audio {
    width: 90%;
    margin-top: 20px;
    filter: invert(100%) hue-rotate(180deg); 
}


input[type="button"] {
    background: #1DB954;
    color: white;
    border: none;
    padding: 12px 25px;
    margin: 15px 10px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

input[type="button"]:hover {
    background: #1ed760; 
    transform: scale(1.05);
}

input[type="button"]:active {
    transform: scale(0.95);
}


#Canciones {
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #e0e0e0;
}


table {
    margin: auto;
}

td {
    padding: 10px;
}