@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');
html{
    scroll-behavior: smooth;
}
body{
    margin: 0px;
    padding: 0px;
    font-family: 'Montserrat', sans-serif;
}


header{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url('../fond_site.jpg');
    background-size: cover;
    color: #fff;
    padding: 0px;
}
header h1{
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #ff8800;
}
header h2{
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #00a6ff;
}header h3{
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #02ff56;
}
#h4{
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    color: #ff8800;
}
header h4{
    margin-top: -20px;
    font-size: 20px;
    text-align: center;
    border-bottom: 1px solid #fff;
}
header button{
    padding: 10px 20px;
    background-color: #fff;
    color:#000;
    border:none;
    margin-bottom: 30px;
    outline:none;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    cursor: pointer;
}

.main{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main .content .card{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom:20px;
}
.main .content .card .left{
   flex: 0 0 30%;
   padding: 30px;
   background-color:black;
   color:#fff;
}
.main .content .card .right img{
    height:150px;
    width: 200px;
    margin-top: 5px;
}

footer{
    margin-top: 40px;
    border-top: 5px solid #6f6f6f;
    background-color: rgb(0, 0, 0);
    color: #fff;
    padding: 30px 100px;;
}
footer h1{
    font-family: 'Playfair Display', serif;
    border-bottom: 1px solid rgb(255, 191, 0);
    width: 20%;
    padding-bottom: 5px;
}
footer h2{
    font-family: 'Playfair Display', serif;
    border-bottom: 1px solid rgb(255, 191, 0);
    width: 20%;
    padding-bottom: 5px;
}
footer .services{
    margin-top: -10px;
    display:flex;
    flex-wrap:wrap;
}
footer .services .service{
    margin-right: 30px;
}
footer .services .service p{
    max-width: 300px;
}
footer #contact{
    color: rgb(181, 181, 181);
}

@media screen and (max-width:680px){
    nav .onglets {
        margin-left: 0px;
        margin-bottom: 20px;
    }
    .main .card {
        margin: 10px;
    }
    .main .content .card .right img{
        height:200px;
        width: 100%;
        margin-top: -0px;
    }
    .main .content .card{
        display: block;
    }
    footer{
        padding: 30px;
    }
}