body{
    margin: 0;
    padding: 0;
    font-family: "poppins", sans-serif;
    height: 100vh;
    width: 100%;
}

.navbar{
    height: 60px;
    width: 100%;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid, black;
    position: fixed;
    z-index: 100;
}

.contItems{
    font-size: 22px;
    height: 100%;
    display: flex;
    align-items: center;
}

.items{
    margin-right: 30px;
    text-decoration: none;
    color: black;
    cursor: pointer; /*****indique ce qu'il se passe à l'internaute*****/
}

.items:hover{
    color: #5f5f5f;
    transform: scale(1,2);
}

.accueil{
    height: 800px;
    width: 100%;
    background: #333;
    background: url(../ressources/home.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.accueil h1{
    font-family: 'Abril Fatface', sans-serif;
    color: #f1f1f1;
    font-size: 70px;
    letter-spacing: 5px;
    margin: 0;
    position: relative;
    padding-top: 150px;
}

.accueil h1::first-letter{
    font-size: 120px; /*******first-letter vise la première lettre de notre h1*****/ 
}

.accueil .sousTitreP{
    color: #f1f1f1;
    font-family: 'poppins', sans-serif;
    font-size: 22px;
}

/**********responsive***********/

@media screen and (max-width :1000px){
    .accueil h1{
        font-size: 50px;
    }
}

@media screen and (max-width: 760px){
    .accueil{
        height: 600px;
    }
    .accueil h1{
        font-size: 30px;
    }
    
    .accueil .sousTitreP{
        font-size: 16px;
    }
}

@media  screen and (max-width: 550px){
    .accueil{
        height: 500px;
        align-items: flex-start;
    }
    .accueil h1{
        margin:0 20px;
    }

    .accueil h1{
        margin: 0 20px;
    }
    .accueil .sousTitreP{
        margin: 0 20px;
    }

    .accueil h1::first-letter{
        font-size: 50px;
    }
}

.titreSec1{
    text-align: center;
    font-size: 40px;
    padding-top: 20px;
}

.txtImg{
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: 1px dashed lightskyblue;
}

.txtImg .flexContainerSection1{
    display: flex;
    justify-content: center;
    width: 1200px;
}

.txtImg .flexContainerSection1 .contImgSec1{
    width: 45%;
    margin: 20px;
}

.txtImg .flexContainerSection1 .contImgSec1 img{
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.txtImg .flexContainerSection1 .contTxtSec1{
    width: 45%;
    background: azure;
    margin: 20px;
    border-radius: 2px;
}

.txtImg .flexContainerSection1 .contTxtSec1 h2{
    text-align: center;
    font-size: 35px;
}

.txtImg .flexContainerSection1 .contTxtSec1 .sousTitreSec1{
    text-align: center;
}

.txtImg .flexContainerSection1 .contTxtSec1 hr{
    width: 60px;
}

.txtImg .flexContainerSection1 .contTxtSec1 .txtSec1{
    font-size: 19px;
    padding: 15px;
}

.txtImg .flexContainerSection1 .contTxtSec1 .txtSec1::first-letter{
    font-size: 30px;
}

@media  screen and (max-width: 1200px){
    .txtImg .flexContainerSection1{
        flex-direction: column;
        align-items: center;
        width: 400px;
    }
    .txtImg .flexContainerSection1 .contImgSec1{
        width: 100%;
    }
    .txtImg .flexContainerSection1 .contImgSec1{
        width: 400px;
    }
}

@media screen and (max-width: 550px){
    .titreSec1{
        font-size: 25px;
    }
    .titrePortfolio{
        font-size: 40px;
        text-align: center;
        padding-bottom: 10px;
    }
}

/*******Section Portfolio*******************/

.titrePortfolio{
font-size: 40px;
text-align: center;
padding-bottom: 10px;
}

.diviseurPort{
    width: 20%;
}

.portfolioImg{
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
}

.portfolioImg .flexImgPortfolio{
    width: 1200px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.portfolioImg .flexImgPortfolio .imgPort{
    width: 360px;
    height: 370px;
    margin: 20px;
    background: #000;
    overflow: hidden;
}

.portfolioImg .flexImgPortfolio .imgPort img{
    width: 100%;
    height: auto;
}

/* css du parallax */

.paraScroll{
    width: 100%;
    height: 300px;
    background: url(../ressources/para.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 300px;
}

.paraScroll h3{
    color: #f1f1f1;
    font-size: 50px;
    letter-spacing: 5px;
}

footer{
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: 1px dashed #333;
}