

/*css UFO : Histoire chronologie*/

 

*{
    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:white;
}



/*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);
    font-size: 30px;
    text-align: center;
    color: rgb(71, 11, 128);

    padding: 10px 25%;
    margin: 40px 0

}


/*répartition frise*/

.répartition1{
    display: flex;
    flex-direction: column;
}

/*Block*/

.répartition2{
    display: grid;
    grid-template-areas:
    "dates divlien"
    ;

    grid-template-columns: auto auto;
    
    justify-content: center;
    margin: 0 5%;
    
}

.dates{
    grid-area: dates;
    display: flex;
    align-items: start;
    justify-content: center;

    background-color: rgb(12, 102, 95);
    border: 5px solid rgb(19, 177, 164);
    border-bottom: none;
    border-top: none;
    color: rgb(238, 255, 254);

    font-size: 24px;

    padding: 10PX 10PX 0 10PX;
    
}
 


.divlien{
    display: grid;
    grid-template-areas:
    "img Titre"
    "img LienPage"    
    ;
    grid-template-columns: 320px 480px ;
    grid-template-rows: 120px 80px;

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

    gap: 10px;

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

    padding: 10px;
    margin-left: 15px;
    margin-bottom: 30px;

}

.img{
    grid-area: img;
    border: 3px solid rgb(88, 230, 182);
    box-shadow: rgb(88, 230, 182) 1px 1px 12px inset;
    border-radius: 12px;
    height: 100%;
    width: 100%; 
    overflow: hidden;
}

.imglien{
    grid-area: imglien;
    width: 100%;
    height: 100%;
    
    border-radius: 8px;
}

.Titre{
    grid-area: Titre;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

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

    color: rgb(226, 253, 251);
    padding: 10px;

    height: 100%;

}

.TitreP1{
    text-align: center;
    font-weight: bold;
    font-size: 28px;
}

.TitreP2{
    text-align: center;
    font-size: 22px;
    margin-top: 5px;
}




.LienPage{
    grid-area: LienPage;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

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

    padding: 10px;
    width: 100%;
    height: 100%;
}

.imgDrapeau{
    border-radius: 5px;
    width: 60px;
    height: 35px;

}

.date{
    color:rgb(226, 253, 251);
    font-size: 22px;
}

.Cliquer{
    grid-area: plien2;
    display: flex;
    justify-content: center;
    font-size: 20px;
    color:rgb(226, 253, 251);
    padding: 0 10px;   
}





