/* General */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 30px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    font-size: 2.5em;
    color: #e67e22; /* Cambiado a naranja */
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Estilos del reproductor de audio */
audio {
    margin-top: 20px;
    width: 80%;
    max-width: 500px;
    border: none;
    outline: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

/* Estilos del contenedor de la letra */
#lyrics {
    margin: 30px auto;
    padding: 20px;
    width: 80%;
    max-width: 700px;
    background-color: #34495e;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
    text-align: left;
    color: #ecf0f1;
    overflow-y: auto;
    max-height: 300px;
}

/* Letras de la canción */
#lyrics p {
    font-size: 1.2em;
    line-height: 1.6;
    margin: 5px 0;
}

/* Letra resaltada (línea activa) */
.highlight {
    color: #e67e22; /* Color naranja para la línea activa */
    font-weight: bold;
    font-size: 1.3em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

/* Efecto visual en el cambio de letra */
#lyrics p {
    transition: all 0.4s ease;
}

/* Diseño responsivo para pantallas más pequeñas */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    #lyrics {
        width: 90%;
    }

    audio {
        width: 100%;
    }
}
