/* CSS des pages dédiées aux chansons*/
*{
    box-sizing: border-box;
}
body{
    background-color:white;
    margin:0;
    width:100%;
    font-size:18px;
    padding:0;
}
#titre{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom:0px;
    padding-top:20px;
    line-height:0;
    font-size: 2rem; /* ≈ 32px si base = 18px */
}
#artiste{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 0;
    padding-bottom: 40px;
    padding-top: 0px;
    font-size:1.8rem;
}
.grilletotale{
    position:sticky;
    top:5px;
    padding-bottom: 20px;
    background-color: white;
    max-width:1400px;
    margin:0 auto;
}
.grille {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border: 2px solid black;

    width:100%;

    padding:20px;
    margin:0 auto;
}

.case {
    border: 1px solid black;
    height: 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-weight: bold;
    font-size: 1.8rem;
}
.accord {
    line-height: 1.4;
}
.titregrille{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    line-break: auto;
    grid-column: 1 / -1;  /* prend toute la largeur */
    text-align: center;
    margin: 5px 0;
}
.pa{ 
    max-width:900px;      /* largeur max du texte */
    width:100%;
    text-align: center;     /* centrer le texte */

    overflow-wrap: break-word;  /* casser les mots si besoin */

    margin:0 auto;
    font-size:2.6rem;

    line-height: 1.2; /* plus serré */

    white-space: pre-line !important;
}
.couplet{
    padding-top:5px;
    padding-bottom:5px
}
.refrain{
    padding-top: 30px;
    padding-bottom: 30px;
    font-weight: bold;
}
.pont{
    padding-top: 5px;
    padding-bottom:5px;
    font-weight: normal;
    font-style: italic;
}