/* Styles de base */
body, html {
    font-family: Arial, Helvetica, sans-serif;
    background-image: linear-gradient(to top, #eef0f1 0%, hsl(0, 41%, 97%) 100%);
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Styles pour les conteneurs principaux */
.histoire, .joueurs, .streameur {
    margin: 20px ;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.histoire1, .histoire2, .joueurs, .personne {
    width: 90%;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 15px;
    text-align: justify;
}
h1{
    text-align: center;
}
h2{
    margin-bottom: 2.5%;
}
p,h1,h2,h3,h4,h5 {
    text-align: left;
    word-spacing: normal;
    letter-spacing: normal;
    line-height: 1.6; /* Ajuster la hauteur de ligne pour améliorer la lisibilité */

  }
 /*Styles pour les images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
    margin: 20px 0;
}


.container img {
    width: calc(25% - 10px);
    height: calc(50% - 10px);
    max-width: 150px;
    transition: all ease-in-out 0.3s;}


.container1 {
    display: flex;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}



.container img:hover {

    transform: scale(2.2);
}

/* Media queries pour la mise en page responsive */
@media screen and (min-width: 768px) {
    .histoire1, .histoire2 {
        width: calc(50% - 10px);
    }

    .personne {
        width: calc(33.33% - 20px);
    }
}

@media screen and (min-width: 1024px) {
    .container img {
        width: calc(12.5% - 10px);
       
    }
}

