
*{
    margin:0;
    padding:0;
}

html{
    font-family: 'Lobster', cursive;
    font-size: medium;
}
@media screen and (max-width: 414px) {
    #apropos {
        color: red;
    }/*ici, on referme la déclaration #apropos*/
    #services {
        flex-direction: column;
    }/*Ici, on referme la déclaration #services*/
}/*ici on referme la media query*/

@font-face {
        font-family: 'lunaregular';
        src: url('./Fonts/luna-webfont.woff2') format('woff2'),
             url('./Fonts/luna-webfont.woff') format('woff'),
             url('./Fonts/Luna.ttf');
        font-weight: normal;
        font-style: normal;
}   
#hero {
    background-image: url('./images/Banniere7.jpg');
    background-size: 1300px 400px;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 5px;
}

nav {
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
    padding: 10px;
    border-radius: 10px;
}

#bandeau {
    background-color: rgba(255, 255, 255, 0.2);
    background-size: cover;
    border-radius: 10px;
    padding: 30px;
    margin: 30px;
}

#contenu {
    text-align: center; 
    background-color:rgba(255, 255, 255, 0.2);
    width: 100%;
    padding: 2px;
}

#contenu a {
    color:red;
    border: 1px solid red;
    border-radius: 10px;
    padding: 2px;
    transition: ease 5s;
}
#contenu a:hover {
    color: white;
    background-color: rgba(178, 32, 19, 0.8);
    }

#apropos {
    display: flex;
    background-size: cover;
    border-radius: 10px;
    
}
#apropos_image img { 
    flex: 1;    
    background-size: cover;
    border-style: dashed;
    border-color: #666;
    border-radius: 10px;
    padding: 5px;
    margin: 5px;
}
#apropos_texte {
    flex: 2;
    padding: 5px;
    text-align: left;
    border-style: dashed;
    border-color: #666; 
    border-radius: 10px;  
    margin: 5px;
}
#services {
    display: flex;
    background-color: #666;
    color: orange;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
}
.services_item p {
    text-align: justify;
    padding: 20px;
}

h1 { 
    color: black; 
    font-size: 24px;
    font-family: 'lunaregular';
}

a {
    color: white;
    text-decoration: none;
    padding: 20px;
    font-family: 'lunaregular';
    transition: 5s;
}

a:hover {
    color: red;
}
h2 {
    color:black;
    font-family: 'Lobster', cursive;
}
footer{
    display: flex;
    justify-content: center;
}

footer a{
    color: black;
}

footer a:hover{
    color: #e74c3c;
}

.social{
    padding: 40px;
}