h2 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: Georgia, sans-serif;
    font-weight: normal;
}

.action {
    text-align: center;
}

.photos {
    border-radius: 10px;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.box {
    text-align: center;
    border-radius: 10px;
    height: 350px;
    width: 350px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-around;
    flex-wrap: wrap;
}

.txt {
    text-align: center;
    border-radius: 10px;
    height: 100px;
    width: 350px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.one {
    background: url(../img/dons/img1.jpg);
    background-size: cover;
}

.two { 
    background: url(../img/dons/img2.jpg);
    background-size: cover;
}

.three {
    background: url(../img/dons/img3.jpg);
    background-size: cover;
}

.four {
    align-items: center;
}


/* Style des boutons sur les photos*/
.btn1 {
    margin-bottom: 20px; /* Modifier la marge supÃ©rieure pour espacer le bouton de l'image */
    padding: 10px 30px;
    background-color: #deb3c7; /* Couleur de fond du bouton */
    color: #FFFFFF; /* Couleur du texte du bouton */
    font-family: Georgia, sans-serif;
    text-decoration: none; /* Supprime les soulignements du lien */
    border: none; /* Supprimer la bordure */
    border-radius: 5px; /* Coins arrondis du bouton */
    box-shadow: inset 1px 1px 5px #888888; /* Ajouter une ombre pour le relief */
    cursor: pointer; /* Changer le curseur au survol */
}

/* Style au survol des boutons sur les photos (facultatif) */
.btn1:hover {
    background-color: #f5e6e3; /* Nouvelle couleur de fond au survol */
}

/* Style du bouton teaming*/
.btn {
    background-color: #deb3c7; /* Couleur de fond du bouton */
    color: #FFFFFF; /* Couleur du texte du bouton */
    font-family: Georgia, sans-serif;
    text-decoration: none; /* Supprime les soulignements du lien */
    border: none; /* Supprimer la bordure */
    border-radius: 5px; /* Coins arrondis du bouton */
    box-shadow: inset 1px 1px 5px #888888; /* Ajouter une ombre pour le relief */
    cursor: pointer; /* Changer le curseur au survol */
}

/* Style au survol du bouton teaming (facultatif) */
.btn:hover {
    background-color: #f5e6e3; /* Nouvelle couleur de fond au survol */
}



.teaming {
    border-radius: 15px;
    width: 450px;
}


.fin-de-page {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}


/* Styles pour les écrans de petite taille (par exemple, les smartphones) */
@media (max-width: 640px) {
    .photos {
        flex-direction: column; /* Affichage en colonne pour les photos */
        align-items: center;
        gap: 20px; /* Augmenter l'espacement entre les photos */
    }

    .btn1 {
        width: auto; /* Rétablir la largeur automatique pour le bouton */
        margin-left: auto; /* Centrer le bouton horizontalement */
        margin-right: auto;
    }

    .fin-de-page {
        flex-direction: column; /* Affichage en colonne pour les éléments de fin de page */
        align-items: center;
    }
}
