/* Style pour le conteneur principal de la page */

body{
    background-color: #000000;
}

#about-container {
    padding: 2rem 3rem;
    text-align: center;
}

.page-title {
    font-family: var(--font-titres);
    font-size: var(--taille-h1);
    font-weight: var(--poids-gras);
    text-align: center;
    padding-bottom: 0.5rem; /* Espace pour la lueur */
    background: rgba(255, 215, 0, 0.9);
    
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
            0 0 5px rgba(255, 215, 0, 0.4),
            0 0 10px rgba(255, 165, 0, 0.2);
}


/* Style général pour tous les paragraphes de cette page */
.about-content p {
    /*color: rgb(240, 240, 240);*/
    line-height: 1.7;
    text-align: left;
    text-indent: 3rem; /* Applique une indentation à tous les paragraphes */
    max-width: 800px;
    margin: 1.5rem auto; /* Centre les paragraphes */
}

.about-content p.p4 {
    text-indent: 0;
}

@media (max-width: 768px) {
    #about-container {
        padding: 2rem 1.5rem;
    }
}