

/*CSS UFO : Livres Alphabétique*/

 

*{
    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: 40px 15%;
}

main{
    padding: 0 15px;
}



/*Répartition Blocks*/

    /*Début Auteurs*/

        
.répartitionDébutLettre{
    display: flex;
    justify-content: space-between;
    align-items: center;

    border: 15px solid rgb(100, 19, 230);
    background-color: rgb(100, 19, 230);
    border-radius: 12px 12px 12px 0;

    width: 35%;
    height: 50px; 
       
}


        
.LettreDébut{
    display: flex;    
    justify-content: center;
    align-items: center;
    text-align: center;

    color: rgb(245, 237, 255);
    font-weight: bold;
    font-size: 40px;
    padding: 0 10px 0 0;
    
}


    /*Partie Livres*/

        /*Contour Blocks Livres + répartiton des block livres*/


.répartitionBlockLivres{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    
    border: 15px solid rgb(100, 19, 230);
    border-top: none;
    border-bottom: none;
    border-right: none;

    gap: 15px;

    padding: 15px;

    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;

    }
       
    .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: 16px;
        
        padding: 5px; 
       

        width: 100%;
        height: auto;
    }



    /*Répartition Fin Block Présentation*/



.FinRépartition{
    display: flex;
    justify-content: space-between;
    align-items: center;

    border: 15px solid rgb(100, 19, 230);
    background-color: rgb(100, 19, 230);
    border-radius: 0 12px 12px 12px;

    padding: 0 10px 0 0;
    margin-bottom: 40px;

    width: 30%;
    height: 40px;


}



.FinLettre2{
    color: rgb(245, 237, 255);
    font-weight: bold;
    font-size: 30px;
    padding: 5px;
    
}















