.
pi {
display: block; /* s'affiche en bloc */
margin: 10px auto; /* espace autour + centré */
padding: 12px 18px; /* respiration du texte */
max-width: 600px; /* limite la largeur */
font-family: "Segoe UI", Arial, sans-serif;
font-size: 18px;
line-height: 1.6; /* bonne lisibilité */
color: #f0f0f0; /* texte clair */
background: linear-gradient(135deg, #1e3c72, #2a5298); /* dégradé bleu */
border-radius: 12px; /* coins arrondis */
box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* ombre douce */
white-space: pre-line; /* interprète les "\n" comme vrais sauts de ligne */
text-align: left; /* texte aligné à gauche */
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pi:hover {
transform: translateY(-3px); /* petit effet flottant */
box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}