

/*css Ufo - Médias Pages*/



*{
    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;
    color: rgb(57, 8, 70);
}




/*main*/

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

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


/*main block*/

.répartition{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}


/*lien*/

.lien{
    display: flex;
    flex-direction: column;
    justify-content: space-between;

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

    padding: 10px;

    width: 350px;
    height: 460px;
}

.div2-1-1{
    border-radius: 12px; 
    border: 1px solid rgb(88, 230, 182);
    box-shadow: rgb(10, 114, 81) 4px 1px 10px;

    width:100%;
    height: 250px;
    overflow: hidden;
}
 
.img2-1-1{
    display: block;
    width: 100%;
    height: 250px;
}

/*logo*/
 

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

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


.présentation{
    
    display: flex;
    flex-direction: column;

    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: 10px; 
    gap: 10px; 

    width: 350px;
    height: 460px;
    
}

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

    font-size: 20px;
    color: rgb(6, 85, 59);
    background-color: white;
    border: 3px solid rgb(88, 230, 182);
    box-shadow: rgb(88, 230, 182) 1px 1px 12px inset;
    border-radius: 12px;

    height: 55px;
}

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

    color: rgb(6, 85, 59);
    background-color: white;
    border: 3px solid rgb(10, 141, 97);
    box-shadow: rgb(10, 141, 97) 1px 1px 12px inset;
    border-radius: 12px;
    padding: 5px;
    font-size: 24px;

    height: 80px;
}

 


.p12{
    display: flex;
    flex-direction: column;
    background-color: white;
    border: 1px solid rgb(10, 141, 97);
    box-shadow: rgb(10, 114, 81) 4px 1px 10px inset;
    border-radius: 12px;

    padding: 15px;

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

.img12-1-1{
    display: block;
    border-radius: 8px;
    background-color: rgb(21, 165, 117);
    box-shadow: rgb(10, 114, 81) 4px 1px 10px;
    border-radius: 10px;

    width: 100%;
    height: 100%;
    
}




/*information*/

.information{
    text-align: center;
    color: rgb(6, 85, 59);
    background-color: white;
    border: 3px solid rgb(88, 230, 182);
    box-shadow: rgb(88, 230, 182) 1px 1px 12px inset;
    border-radius: 12px;
    font-size: 18px;
    line-height: 150%;

    padding: 15px;

    width: 350px;
    height: 460px;

}



.AnnonceLien{
    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: 22px;
    text-align: center;

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


/*Lien youtube*/

.divlien{
    display: grid;
    grid-template-areas:
    "img1lien plien1"
    "img1lien plien2"    
    ;
    
    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: 200px;
    overflow: hidden;

    margin: 10px 5%;
}

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

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

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


