body {
    margin: 0;
    overflow-x: hidden;
    margin-top: 0;
}

img{
    border-radius: 20px;
}

p{
    font-size: 1em;
    color: #070D16;
    font-family: 'Roboto', sans-serif;
}

span {
    color: #263EFF;
}

h2{
    font-size: 1.875em;
    color: #070D16;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-align: center;
}

.bouton {
    width: 100px;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    color:#263EFF;
    border: 2px solid #263EFF;
    font-family: 'Roboto', sans-serif;    
    cursor: pointer;
    margin: auto;
}

.bouton:hover{
    background-color: #263EFF;
    color: white;
    transition: 0.5s ease-in-out;
}



nav {
    margin-top: 0px;
    height: 60px;
    background-color: #070D16;
    width: 100%;
    position: fixed;
    z-index: 100;
    scroll-behavior: smooth;
}

nav img {
    width: 80px;
    position: absolute;
    top: 12px;
    left: 5%;
}

nav ul {
    float: right;
    margin-right: 5%; 
}

nav ul li {
    display: inline-block;
    line-height: 30px;
    margin: 0 15px;
}

nav ul li a{
    position: relative;
    color: white;
    font-size: 1em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

nav ul li a:hover{
    color: #263EFF;
    transition: 0.5s ease-in-out;
}


label #btn,
label #cancel {
    position: relative;
    color: white;
    font-size: 1em;
    float: right;
    line-height: 60px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

/*Home*/

.home img {
    width: 100%;
    height: 900px;
}

.home {
    display: flex;
}


.home h2{
    font-size: 3em;
    color: white;
    margin-top: 25%;
    position: absolute;
    margin-left: 32%;
}


.categorie_gauche, .categorie_droite{
    width: 100%;
    height: 500px;
    margin-top: 80px;
}

.categorie_gauche img{
    width: 500px;
    height: auto;
    margin-left: 15%;
	transform: scale(1);
}

.categorie_gauche img:hover{
	transform: scale(1.3);
}

.categorie_texte{
    width: 500px;
    float: right;
    margin-right: 15%;
}


.categorie_droite img{
    width: 500px;
    height: auto;
    margin-right: 15%;
    float: right;
}

.categorie_texte_droite{
    width: 500px;
    margin-left: 15%;
}

footer {
    background-color: #263EFF;
    padding: 5px;
    width: 100%;
    z-index: 100;
}

footer p{
    color: white;
    text-align: center;
    text-transform: uppercase;
}


