
@media (max-width: 1075px) {
     img{
         justify-items: center;
     }
    
     body{
         text-align: center;
     }

    .home h2{
        margin-top: 50%;
        margin-left: 25%;
    }


    label #btn {
        display: block;
    }
    nav ul{
        position: fixed;
        width: 50%;
        height: 100%;
        background-color: #263EFF;
        top: 43px;
        left: -100%;
        text-align: center;
        transition: 0.5s;
        z-index: 20;
        line-height: 10px;
    }
    nav ul li{
       display: block;
        margin: 40px 0;
        line-height: 40px;
    }

    nav ul li a:hover{
        color: #070D16;
    }

    #check:checked ~ ul{
        left: 0;
    }
    #check:checked ~ label #btn{
        display: none;
    }
    #check:checked ~ label #cancel{
        display: block;
   }

   .categorie_gauche, .categorie_droite{
       height: auto;
       margin-bottom: 80px;
       text-align: center;
   }


   .categorie_gauche img{
    margin-right: 0;
    margin-left: 0;
    text-align: center;
    }

   .categorie_texte {
       float: none;
       margin: auto;
   }

   .categorie_droite img{
        float: none;
        margin-right: 0;
        margin-left: 0;
        text-align: center;
    }

    .categorie_texte_droite{
        margin: auto;
    }
}



@media (max-width: 800px) { 
 
    .categorie_gauche img{
        width: 96%;
        margin-right: 2%;
        margin-left: 2%;
    }

    .categorie_texte{
        width: 96%;
        margin-right: 2%;
        margin-left: 2%;
    }

    .categorie_droite img{
        width: 96%;
        margin-right: 2%;
        margin-left: 2%;
    }

    .categorie_texte_droite {
        width: 96%;
        margin-right: 2%;
        margin-left: 2%;
    }

    .home h2{
        margin-left: 5%;
        margin-top: 70%;
    }
}


