* {
    --fond: #282454;
    --primaire: #312d5d;
    --secondaire: #1c1848;
    font-family: "Google Sans Code", monospace;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*retire les points de la liste*/
ul{
    list-style: none;
}

/*retire les effects sur les liens*/
a{
    text-decoration: none;
    color:inherit;
}

.header{
    background-color: rgba(0, 0, 0, 0.7);
    position: sticky;
    top:0;
    z-index: 1000;
}

.header_contenu{
     z-index: 10;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding:0 30px
    
}

.logo_img{
    width: 17%;
    height: 17%;
}

.navList{
    display: flex;
    column-gap: 70px;
    
}

.navLink{
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s;
}

.navLink:hover{
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
}

@media (max-width: 650px){
    .header_contenu{
        flex-direction: column;
        padding: 25px 0;
        row-gap: 18px;
    }

    .logo_img{
        height: 60px;
        width: 60px;
    }
}



h1{
    font-size: 50px;
    
    text-transform: uppercase;
    
}
.title{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    margin: 20px;
   
    padding: 10px;
    border-radius: 35px;

}

.titleCate{
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 25px 0;
    background-color: var(--primaire);
    box-shadow: 10px 10px var(--secondaire);
    border-radius: 25px;
    margin-left: 15vw;
    margin-right: 15vw;
}

h1,p,h3{
    color: #bbb9b9;
}


body{
    background-color: var(--fond);
}

p{
   
    margin: 60px;
}


.titleCate{
    margin-left: 100px;
    padding: 20px;
    
}

.histoire>p{
    margin-left: 150px;
    margin-right: 150px;
}

.histoire>img{
    display: flex;
    height: 300px;
    border-radius: 15px;
    
}

.createur{
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding: 20px;
    gap: 20px;
    margin: 100px;

}
@media (max-width: 650px) {
    .createur{
        display: flex;
        justify-content: center;
        flex-direction: column;
    }


    .histoire>p{
        margin-left: 60px;
        margin-right: 60px;

    }

    .HisImg{
        display: flex;
        justify-content: center;
        
        border-radius: 15px;
        margin: 20px;
        
    }
}
.lien{
    text-decoration: underline;
    color: blueviolet;
}


.fonda{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px 0;
    background-color: var(--primaire);
    box-shadow: 10px 10px var(--secondaire);
    border-radius: 25px;
   
}

.imgCrea{
    display: flex;
    justify-content: center;
    border-radius: 50%;
    height: 130px;
    width: 130px;
    margin-left: 50px;
   
   
}

.fonda:hover{
    margin-top: 30px;
}



.description>h3{
    display: flex;
    justify-content: center;
    
    padding: 10px;
    
}



.footer {
    background-color: var(--primaire);
    color: white;
    padding: 20px 0;
    text-align: center;
    border: var(--secondaire) 4px solid;
}

.footer_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer_social {
    margin-bottom: 20px;
}

.footer_social_icon {
    margin: 0 10px;
}

.footer_social_icon img {
    width: 30px;
    height: 30px;
}

.footer_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer_link {
    color: white;
    margin: 5px 15px;
    text-decoration: none;
}

.footer_link:hover {
    text-decoration: underline;
}