.titre_principale{
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
    text-shadow: 10px 10px 20px rgba(0, 0, 0, 10);  
}

.image_container{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}


.image_container img {
    max-width: 100%;
    height: auto;
    width: 30%; 
    box-shadow: 0px 0px 60px #5A5DFF;
    border-radius: 20px;
}



.presentation_container{
    margin: 50px;
    padding: 50px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0px 0px 60px #5A5DFF;
}


/* Réduction du titre pour les écrans ≤ 768px */
@media (max-width: 768px) {
    .titre_principale {
        font-size: 1.5em; /* Taille réduite */
        margin-bottom: 30px; /* Ajustement de l'espacement */
    }
}
