

/*CSS UFO : Livres Auteurs*/

 

*{
    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 Block Présentation Début*/


.répartitionDébut{
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 40px;

    width: 100%;
    height: auto;

       
}


.Début1{
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgb(100, 19, 230);
    box-shadow: rgb(100, 19, 230) 1px 1px 15px inset ;
    border: 3px solid rgb(100, 19, 230);
    border-radius: 12px;

    width: 20%;
    height: 60px;

}

.Début1a{
    color: rgb(245, 237, 255);
    font-weight: bold;
    font-size: 15px;
    
}


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

    background-color: rgb(100, 19, 230);
    box-shadow: rgb(100, 19, 230) 1px 1px 15px inset ;
    border: 3px solid rgb(100, 19, 230);
    border-radius: 15px 15px 15px 0;  
    border-radius: 12px;

    padding: 8px;
    margin-left: 20px;

    width: 100%;
    height: 60px;

}

.Debut2a{
    text-align: center;
    color: rgb(245, 237, 255);
    font-weight: bold;
    font-size: 30px;

}



/*Répartition Blocks*/

    /*Début Auteurs*/


.répartitionDébutAuteur{
    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: 55%;
    height: auto; 
       
}



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

    color: rgb(245, 237, 255);
    font-weight: bold;
    font-size: 45px;
    
}


.NomAuteur{
    display: flex;    
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;

    color: rgb(245, 237, 255);
    font-weight: bold;
    padding: 5px;

    font-size: 35px;


}

.BlockImgAuteur{
    display: flex;
    border-radius: 12px;
    box-shadow: rgb(210, 184, 255) 2px 2px 10px;

    width: 100px;
    overflow: hidden;
    height: 120px;
}


.ImgAuteur{
    display: block;
    width: 100%;
    height: 100%;
}


    /*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: 20px;

    padding: 20px;

    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 15px;
    margin-bottom: 40px;

    width: 40%;
    height: 50px;


}



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

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


.FinLettreBlock{
    display: flex;    
    justify-content: center;
    align-items: center;
  
    background-color: rgb(113, 27, 211);
    border-radius: 0 15px 15px 0;

    width: 100%;
    height: 100%;


}

.BlockFinLettre{

    text-align: center;
    color: rgb(245, 237, 255);
    font-weight: bold;
    font-size: 26px;

    width: 100%;
    height: 100%;

}









