*{
    margin:0;
    padding:0;
}
@font-face {
    font-family: 'gimbotregular';
    src: url('./fonts/gimbot-webfont.woff2') format('woff2'),
         url('./fonts/gimbot-webfont.woff') format('woff'),
         url("./fonts/gimbot.ttf");
    font-weight: normal;
    font-style: normal;
    }
        h1{
	color: rgba(247,103,7,1); 
    font-size: 200px;
    font-family: "Gimbotregular";  
    }
        h3{
    font-family: "Lobster", sans-serif;
    font-size: 75px;
    font-weight: 400;
    font-style: normal;
    }
        h5{
    font-family: "Bitcount Prop Single", system-ui;
    font-size: 50px;
    }

a{@font-face {   
    font-family: 'gimbotregular';
    src: url('gimbot-webfont.woff2') format('woff2'),
         url('gimbot-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    }
    }
a:hover{
color:blue;
}

#hero{
    background:url("./fond.jpg");
    background-repeat:no-repeat;
    background-size:cover;
    height:100% /*pour la marge du bas*/
    }

nav{
    background-color:rgba(0,0,0,0.5);
    text-align:center;
    padding :20px;
    }
    a{
    color: white;
    text-decoration:none;
    padding:20px;
    }

    #bandeau{
    margin-top:10%;
    margin-bottom:10%;
    background-color:rgba(255,255,255,0.5);
    }
   
    #contenu{
        text-align: center;
        padding:1%
        }
    #contenu a{
        color:red;
        border:2px solid red;
        border-radius:15px;
        padding:10px;
        transition:ease 2s;
    }

html{
    font-family:"arial";
    font-size:16px;
}

#contenu a:hover{
    color:white;
    background-color:rgba(178,32,19,0.8);
    border:0px solid red;
        border-radius:25px;
}

#contenu img:hover{
    transform:rotate(360deg) scale(1.5);
}
#contenu img{
    transition:2s;
}


#apropos{
    display:flex;
}
#apropos_image{
    padding:20px;
    flex:1;
}

#apropos_image img{
    flex:1;
    max-width:100%;
}
#apropos_texte{
    padding:20px;
    text-align:justify;
    flex:2;
}

#services{
    display:flex;
    background-color: #666;
    color:white;
    padding: 50px;
    text-align:center;
}
.services_item p{
    text-align:justify;
    padding:20px;
}


@media screen and (max-width: 414px){
    #apropos{
        flex-direction:column;
   }
    #services{
        flex-direction:column;
   }
nav a{
    display:block;
    padding:10px;
  }
}


