

/*css UFO : Livres Chonologie*/

 

*{
    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(15, 87, 71);
}



/*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: 28px;
    text-align: center;

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

main{
    padding: 0 15px;
}


/*Répartition Block Présentation*/




.répartitionDébutAnnée{
    display: grid;
    grid-template-areas:
    "AnnéeDébut BlockDebut"
    ;
    display: flex;
    flex-direction: row;

    gap: 15px;
    

}

.AnnéeDébut{
    grid-area: AnnéeDébut;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgb(12, 102, 95);
    border: 5px solid rgb(19, 177, 164);
    border-radius: 15px 15px 0 0;
    border-bottom: none;

    padding: 0 5px 10px 5px;
 
    width: 110px;
    
}

.Année2Début{
    color: rgb(237, 252, 250);
    font-weight: bold;
    font-size: 16px;
    padding: 5px;
    
}


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

    background-color: rgb(1, 26, 23);
    border: 3px solid rgb(19, 177, 164);
    box-shadow: rgb(11, 179, 165) 1px 1px 20px inset;  
    border-radius: 12px;

    padding: 8px;

    width: 100%;
    height: 100%;


}

.BlockDebutTitre{
    text-align: center;
    background-color: rgb(12, 102, 95);
    border: 2px solid rgb(19, 177, 164);
    box-shadow: rgb(11, 179, 165) 1px 1px 12px inset;
    border-radius: 12px;
    color: rgb(237, 252, 250);
    font-weight: bold;
    font-size: 30px;

    padding: 15px 10px;

    width: 100%;

}



/*Répartition Block Livres*/



.répartition1{
    display: grid;
    grid-template-areas:
    "Année répartitionBlockLivres"
    ;
    display: flex;
    flex-direction: row;
    gap: 15px;

}



.Année{
    grid-area: Année;
    display: flex;
    justify-content: center;
    align-items: start;

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

    padding: 20px 5px 10px 5px;
 
    width: 110px;
    
}

.Année2{
    color: rgb(223, 248, 246);
    font-size: 24px;
    padding: 5px;
    padding-top: 30px 
    
}


/*blocks*/


 

.répartitionBlockLivres{
    grid-area: répartitionBlockLivres;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;

    padding: 40px 0 0 0;

    width: 100%;
    height: auto;  
}


        /*Blocks Livres*/


    .BlockLivre{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        background-color: rgb(1, 26, 23);
        border: 3px solid rgb(19, 177, 164);
        box-shadow: rgb(11, 179, 165) 1px 1px 20px inset;  
        border-radius: 12px;

        gap: 10px;

        padding: 10px;

        width: 250px;
        height: auto;

    }

    .DatePublication{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        text-align: center;

        background-color: rgb(12, 102, 95);
        border: 2px solid rgb(19, 177, 164);
        box-shadow: rgb(11, 179, 165) 1px 1px 12px inset;
        border-radius: 12px;
        color: white;
        font-size: 11px;
        
        padding: 5px; 
        width: 100%;
        height: auto;
        
    }

    .Date{
        font-size: 14px;
    }
       
    .img{   
        border-radius: 12px;
        border: 3px solid rgb(19, 177, 164);
        box-shadow: rgb(11, 179, 165) 1px 1px 12px ;

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


    .imgL3{
        display: block;
        width: 100%;
        height: 100%;

    }

    .TitreLivre{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        text-align: center;

        background-color: rgb(12, 102, 95);
        border: 2px solid rgb(19, 177, 164);
        box-shadow: rgb(11, 179, 165) 1px 1px 12px inset;
        border-radius: 12px;
        color: white;
        font-size: 18px;
        
        padding: 10px; 
        width: 100%;
        height: 120px;
    }

    .TitreLivre2{
        font-size: 16px;
        margin-top: 10px;
    }

        
    .CiiqueIci{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        text-align: center;

        background-color: rgb(12, 102, 95);
        border: 2px solid rgb(19, 177, 164);
        box-shadow: rgb(11, 179, 165) 1px 1px 12px inset;
        border-radius: 12px;
        color: white;
        font-size: 15px;
        
        padding: 5px; 
       

        width: 100%;
        height: auto;
    }









