

/*css Ufo - Associations Pages*/

  

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


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


a{
    text-decoration: none;
    color: rgb(15, 87, 71);
}



/*main*/

.Chapitre{
    border-radius: 12px;
    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;
    text-align: center;

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




/*blocks*/

.Repartition1{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 30px;
    margin: 0 5%;
}


.Block1{
    background-color: white;
    border: 3px solid rgb(88, 230, 182);
    box-shadow: rgb(88, 230, 182) 1px 1px 12px inset;
    color: rgb(15, 87, 71);  
    border-radius: 12px;

    padding: 10px;

    width: auto;
    height: auto;
}


.LogoAsso{
    border-radius: 12px;
    border: 2px solid rgb(88, 230, 182);
    box-shadow: rgb(88, 230, 182) 1px 1px 12px;
    
    width: 470px;
    overflow: hidden;
    height: 370px;
}

.imgLogoAsso{

    display: block;
    border-radius: 9px;
    width: 100%;
    height: 100%;

}

/*logo*/

.logos{
    display: flex;
    justify-content: space-around;
    align-items: center;

    margin: 30px 0;
    height: auto;

}

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




/*Block infos*/


.BlockInfos{
    text-align: center;
    background-color: white;
    border: 3px solid rgb(88, 230, 182);
    box-shadow: rgb(88, 230, 182) 1px 1px 12px inset;
    color: rgb(15, 87, 71);  
    border-radius: 12px;

    font-size: 20px;
    line-height: 150%;

    padding: 30px;

    width: 50%;
    height: auto;
    margin: 0 5%;
}


/*Annonce Lien*/


.AnnonceLien{
    border-radius: 12px;
    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: 26px;
    text-align: center;

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


/*Lien youtube*/


.Repartition2{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    margin: 0 20%;
}



.BlockLien{
    display: grid;
    grid-template-areas:
    "BlockImg Titre1"
    "BlockImg Titre2"    
    ;
    
    justify-content: start;
    align-items: center;

    flex-wrap: wrap;

    border-radius: 12px;
    background-color: rgb(1, 7, 5);
    border: 3px solid rgb(88, 230, 182);
    box-shadow: rgb(88, 230, 182) 1px 1px 12px inset;

    padding: 15px;

    width: 100%;
    height: 100%;

 
}

.BlockImg{
    grid-area: BlockImg;
    display: flex;
    width: 200px;
    height: 120px;
    overflow: hidden;
}

.ImgBlockImg{
    
    border-radius: 10px;
    box-shadow: rgb(88, 230, 182) 1px 1px 12px;
    border: 2px solid rgb(88, 230, 182);
    width: 100%;
    height: 100%;
}
 

.Titre1{
    grid-area: Titre1;
    text-align: start;
    font-size: 25px;
    color: white;
    margin-left: 30px;

    width: 600px;
}

.Titre2{
    grid-area: Titre2;
    text-align: start;    
    font-size: 21px;
    color: white;
    margin-left: 30px;

}


