/* Sommaire */


*{
    margin: 0;
}




body {
    background-image: url("../Images/FondUfo1.jpeg");
    background-size: cover;  
    background-attachment: fixed;
    margin: 5px;
}



/*   HEADER   */

header{
    border: 1px solid rgb(10, 177, 123);
    background-color: rgb(240, 252, 248);

    display: grid;
    grid-template-areas: 
        "a1 a2 a3"
        "a1 a4 a3"
       ;
    grid-template-columns: 10% 80% 10%;
    grid-template-rows: auto auto;

    justify-content: space-between;
    align-items:center;

    font-family: 'Comme', sans-serif;
    color: rgb(6, 121, 112);
    border-radius: 12px;
    padding: 5px;

}

.a1 {
    grid-area: a1;    
}

.a1a{
    width: 70px;
    border-radius: 15px;
    margin-left: 10px;
}

.a2 {
    grid-area: a2;
    text-align: center;
    font-weight: bold;
    font-size: 50px;    
}

.a3 {
    grid-area: a3;       
}

.a3a{
    width: 70px;
    border-radius: 15px;
    margin-right: 10px;
}

.a4 {
    grid-area: a4;
}

.a4b{
    text-align: center;
    margin-bottom: 5px;
}

.a4a{
    
    font-weight: bold;
    font-size: 26px;
}



 
/*main*/


.ligne {
    padding-top: 5px;
    display: flex;
    justify-content:space-between;
    flex-wrap: wrap;

    gap: 5px;
}

.e1{
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    align-items: center;

    border-radius: 15px;
    border: 0.5px solid rgb(10, 177, 123); 
    box-shadow: rgb(107, 214, 180) 1px 1px 12px;
    background-color: rgba(216, 250, 239, 0.9);
    color: rgb(11, 128, 112);

    width: 15%;
    height: 30%;
    padding: 8px 0; 
}

.e2{
    height: 60px;
    font-size: 20px;
    color: rgb(8, 46, 43);
    text-align: center;
    padding-bottom: 10px;

}









