*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
}
body{
    height: 100vh;
    width: 100%;
}

.banner{
    width: 100%;
    height: 450px;
    background-image: url(./../img/ban.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* styliser les icon de reseau sociaux */
.unoderlistIcon {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    -webkit-box-reflect: below 0px linear-gradient(transparent, rgba(0,0,0,0.2));
}
.unoderlistIcon li{
    list-style: none;
    margin: 10px;
    font-size: 20px;
    border-radius: 50%;
    transition: 0.4s;
}
.unoderlistIcon li a{
    width: 40px;
    height: 40px;
    display: block;
    /* padding: 7px 0; */
    transform: translateY(5px);
    color: #fff;
    
}
.unoderlistIcon li:hover{
    transform: translateY(-15px);
}
.unoderlistIcon li:nth-child(1){
    background-color: rgb(40, 73, 170);

}
.unoderlistIcon li:nth-child(2){
    background-color: rgb(65, 225, 73);
}
.unoderlistIcon li:nth-child(3){
    background-color: rgb(21, 51, 139);
}
.unoderlistIcon li:nth-child(4){
    background-color: rgb(0, 0, 0);
}
.unoderlistIcon li:nth-child(5){
    background-color: rgb(67, 112, 248);
}

.listOfIcon{
    text-decoration: none;
    color: #fff;
    text-align: center;
    list-style: none;
}
.listOfIcon h2{
    z-index: 4;
}

.welcome-container {
    text-align: center;
    opacity: 0;
    position: absolute;
    left: 10%;
    top:40%;
    animation: fadeIn 2s forwards;
    color: aliceblue;
}
.welcome-container p {
    margin: 0;
    padding: 0;
    line-height: 3rem;
}
.welcome {
    font-size: 2rem;
    color: white;
    animation: slideDown 2s forwards;
}
.sub-message {
    font-size: 1.5rem;
    /* background: #000; */
    margin-left: -20px;
    padding-left: 40px;
    animation: fadeIn 2s 1s forwards;
    overflow: hidden;
}

/* caroussel de text */
.__carouss{
    position: relative;
    width: 100%;
    height: 45px;
    /* background: #000; */
    text-align: center;
    line-height: 45px;
}

.__carouss ._pretext{
    position: absolute;
    top: 0;
    right: 47%;
    height: 45px;
    
}
.__carouss .changeHidden{
    position: relative;
    top: 0;
    left: 25%;
    height: 45px;
    overflow: hidden;
}
.__carouss .changeHidden .contenant{
    position: relative;
    animation: carouss 8s ease-in-out infinite;
}

.__carouss .changeHidden .element{
    display: block;
    font-weight: bold;
    color: #fff;
}

.container{
    width: 100%;
    display: flex;
    justify-content: center;
}

/* about me */
.centerMe{
    display: flex;
    justify-content: center;
}
.mainSection{
    width: 100%;
    margin-top: 20px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 20px;
    background-color: rgba(52, 58, 64, 0.3);
}
.centerAll
{
    display: flex;
    flex-direction: column;
}
/* .containPdp{
    width: 100%;
    display: flex;
} */
.aura{
    background: none;
    border: rgb(12, 175, 12) 5px solid;
    width: 80px; height: 80px;
    border-radius: 50%;
    animation:scaling 2s ease-in-out infinite;
    z-index: 1;
}
.img{

    background-size: cover;
    background-position: center;
    border-radius: 50%;
    width: 80px; height: 80px;
    z-index: 3;
    /* transform: translateX(-80px); */
    
}

#LbAbout, #LbMedia{
    color: #fff;
    padding-bottom: 15px;
    text-align: justify;
    /* text-align: center; */
}
#lbProjet{
    text-align: center;
}
/* media */
.myMedia{
    display: flex;
    flex-direction: center;
}
#LbMedia{
    padding-top: 15px;
}
.mediaMsg h1{
    text-align: center;
    /* font-family: poppins; */
    padding-top: 5px;
}
.indicatorSlide{
    color: white;
    background-color: green;
}
.caroussContain{
    margin-bottom: 10px;
    border-radius: 20px;
}
/* projet */
.myProject{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rectProjet1{
    width: 200px;
    height: 200px;
    background: #000;
    overflow: hidden;
}
.carousel-item{
    text-align: center;
    
}
/* animation de l'aura */
@keyframes scaling{
    0%{
        transform: scale(1.1);
        border:rgb(54, 161, 54) 5px solid;
    }
    50%{
        transform: scale(1.2);
        border: green 5px solid;
        opacity: .5;
    }
    100%{
        transform: scale(1.1);
        border: rgb(57, 141, 57) 5px solid;
    }
}

/* animation du caroussel */
@keyframes carouss{
    0%,20%{
        transform: translateY(0);
    }
    25%,45%{
        transform: translateY(-45px);
    }
    50%,70%{
        transform: translateY(-90px);
    }
    75%,95%{
        transform: translateY(-135px);
    }
    100%{
        transform: translateY(-180px);
    }
}

/* animation du texte d'acceuil */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* formulaire de contact */
footer {
    text-align: center;
    margin-top: 10px;
    background: black;/*rgb(52, 58, 64)*/
}
.mailForm form{
    margin-left: 40px;
    margin-right: 40px;
}
.btnSend{
    margin-top: 10px;
    margin-bottom: 10px;
    background: linear-gradient(to left,  green,rgb(255, 223, 44));
}