@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');




* {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    
}

html{ scroll-behavior: smooth;
}



header { 
    background-color: #ffffff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
    height: 50px;
    width: 100%;
    
}


ul {
    display: flex;
    list-style: none;

}

a {
    color: #ED7525;
    text-decoration: none;
    font-size: 15px;
}

ul a {
    padding: 20px;
transition-duration: .5s;


}

ul a:hover{
     color: #000000;
    
}



section img { height:auto;
width: 1000px;}

section { 
height: 750px;
display: flex;
    align-items: center;
    justify-content: center;
    

}


#hero { background-color: black;

}

#me-contacter {
    height: 300px;
     display: flex;
    flex-direction: column;
    align-content: center;
    
}

h1 {font-size: 30px;  
    transition-duration: .5s;

}

section a:hover { color: black;}

footer {
    
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 400px;
    width: 100%;     
    
}

footer img { 
    height: 200px;
    width: auto;
padding-right: 10px;
    
}

footer .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    
}

footer .infobox {display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
    padding-bottom: 10px;
    padding-right: 10px; 
}
 
footer h2 { font-size: 12px;
text-align: center;
}

h2 a:hover{
    color: #000000;}
    

