.song-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.song-title {
    cursor: pointer;
    font-family: Lato;
    font-weight: 300;
    margin-top: 10px;
    color: #B90032;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.lyrics {
    transition: max-height 0.3s ease-out;
    overflow: hidden;
    max-height: 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Tres columnas */
    gap: 10px;
}

.lyrics-column {
    text-align: left;
}

.verse {
    margin-bottom: 1em; /* Añade espacio entre las estrofas */
}

.lyrics.expanded {
    max-height: 1000px; /* Ajusta según la longitud de la letra */
}

.hidden {
    display: none;
}
