

/*css Ufo - Associations*/



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background-image: url("../../Images/FondUfo1.jpeg");
    background-size: cover;  
    background-attachment: fixed;
    font-family: 'Comme', sans-serif;
    margin: 5px;
}


a{
    text-decoration: none;
}



/*main*/


.Chapitre{
    text-align: center;

    border-radius: 15px;
    border: 2px solid rgb(147, 67, 223); 
    box-shadow: rgb(147, 67, 223) 1px 1px 12px;
    background-color: rgb(232, 213, 252);
    color: rgb(71, 11, 128);

    font-size: 30px;
     

    padding: 10px 20px;
    margin: 40px 25%;
}

.Chapitre2{
    font-size: 20px;
}


/*blocks*/

.RepartitionAsso{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


.BlockInfos{
   display: flex;
    flex-direction: column;

    background-color: rgb(243, 255, 252);
    border: 2px solid rgb(88, 230, 182);
    box-shadow: rgb(141, 250, 213) 1px 1px 25px inset;
    border-radius: 12px;
    
    padding: 20px;
    margin-bottom: 30px;

    width: 320px;
    height: auto;
}
 

.NomAsso{ 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    background-color: rgb(248, 255, 252);
    border-radius: 12px;
    box-shadow: rgb(10, 114, 81) 4px 1px 10px;
    color: rgb(3, 110, 75);
    
    font-size: 24px;
    font-weight: bold;

    margin-bottom: 20px;

    height: 60px; 
}

.BlockImg{
    border-radius: 12px;
    box-shadow: rgb(10, 114, 81) 4px 1px 10px;

    width: 100%;
    overflow: hidden;
    height: 220px;
}

.ImgBlockImg{
    display: block;
    border-radius: 12px;
    width: 100%;
    height: 100%;

}

.InfosAsso{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    box-shadow: rgb(10, 114, 81) 2px 1px 10px;
    background-color: rgb(248, 255, 252);
    border-radius: 12px;
    color: rgb(3, 110, 75);
    font-size: 18px;
    line-height: 150%;
      
    padding: 10px;
    margin: 20px 0;

    width: 100%;
    height: 180px;
    
}


/*logo*/

.logos{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    width: 100%;
    height: auto;
}

.imglogo{
    box-shadow: rgb(10, 114, 81) 2px 1px 10px;
    border-radius: 50%;
    width: 45px;   
}



