*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header{
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 40px;
    background: pink;
    z-index: 100;
    border-bottom: 5px solid blue;
}

.logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    text-decoration: none;
    text-shadow: 2px 8px 4px #000;
    pointer-events: none;
}

.navbar a{
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #fff;
    text-decoration: none;
    margin-right: 10px;
    text-transform: uppercase;
    transition: 0.5s ease;
}
.navbar a:hover{
    background: #fff;
    color: #000;
}
.navbar a.active{
    background: #fff;
    color: #000;
}


.banniere {
    position: relative;
    width: 100%;
    height: 500px;
    padding: 40px;
    background:linear-gradient(rgb(0,0,0,0.6), rgb(0,0,0,0.6)), url(./image/meilleur-site-vetement-femme.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 8%;
    text-align: center;

}

/* .banniere video{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -100;
    overflow: hidden;

} */

.banniere h1{
    color: rgb(255,45,113);
    font-size: 4rem;
    text-shadow: 1px 7px 5px #000;
    margin: 10px;
}
.banniere h3{
    color: rgb(255,85,140);
    font-size: 35px;
    font-weight: 800;
    padding: 10px 20px;
    background: #00ec;
    border-radius: 40px;
}

.banniere button{
    margin: 20px;
    font-size: 20px;
    font-weight: 600;
    padding: 8px 20px;
    border: none;
    outline: none;
    border-radius: 40px;
    background: rgb(230,0,74);
    cursor: pointer;
    transition: 0.5s ease;
    box-shadow: 2px 8px 6px #000;
}
.banniere button:hover{
    transform: scale(1.1);
}

main{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
}

.myVideo{
    width: 100%;
    height: 400px;
    padding: 20px;
}

main video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main .intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
}
main .intro p{
    margin: 20px;
}

main h1{
    font-size: 4rem;
    text-shadow: 0px 7px 6px #000;
    color: rgb(255,45,113);
}

main p{
    padding: 40px;
    width: 100%;
}



/* Les cartes */


#produits{
    margin-top: 40px;
    width: 100%;
}

#produits h1{
    margin: 20px;
}

#produits .conteneur{
    width: 100%;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* background: red; */
}
#produits .conteneur .card{
    position: relative;
    width: 280px;
    height: 360px;
    background: rgb(201,201,201);
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

#produits .conteneur .card .bottom{
    position: absolute;
    width: 100%;
    height: 10;
    bottom: 0;
    /* background: #000; */
}

#produits .conteneur .card .bottom p{
    color: #00ec;
    font-size: 20px;
    font-weight: 700;
    
}
#produits .conteneur .card .bottom button{
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    border-radius: 40px;
    font-size: 19px;
    font-weight: 600;
    background: #00ec00;
    
}

#produits .conteneur .card .bottom button:hover{
    cursor: pointer;
}



#produits .conteneur .card .top{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}
#produits .conteneur .card .top img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

#produits .conteneur .card:hover img {
    transform: scale(1.2) rotate(15deg);
}





/* Footer */

footer{
    position: sticky;
    bottom: 0;
    width: 100%;
    padding: 40px;
    background: pink;
}

/* Mise enforme du formulaire */

.formulaire{
    background: pink;
    width: 400px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 40px;
}

.blocform h2{
    font-size: 2rem;
    color: #fff;
    text-align: center
}

section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.inputbox{
    position: relative;
    margin: 30px 0;
    width: 310px;
    border-bottom: 2px solid #fff;
}
.inputbox label{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1em;
    pointer-events: none;
    transition: .5s;

}
.inputbox input{
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: #fff;
    padding: 0 35px 0 5px;
}

input:focus ~ label,
 input:valid ~ label{
    top: -5px;
}

.rappel{
    margin: -15px 0 15px;
    font-size: .9em;
    color: #fff;
    display: flex;
    justify-content: center;
}

.rappel label input{
    margin-right: 3px;
}
.rappel label a{
    color: #fff;
    text-decoration: underline;
}
.rappel label a:hover{
    color: purple;
}

.connect{
    width: 100%;
    height: 50px;
    border-radius: 40px;
    border: none;
    outline: none;
    font-weight: 900px;
    cursor: pointer;
}
.compte{
    font-size: .9em;
    color: #fff;
    text-align: center;
    margin: 25px 0 10px;
}
.compte a{
    color: #fff;
}
.compte  a:hover{
    color: purple;
}

html{
    scroll-behavior: smooth;
}

/* RESPONSIVE */

@media screen and (max-width: 955px) {
    .navbar{
        display: none;
    }
    header{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    
}
@media  screen and (max-width:500px) {
    .banniere h1{
        font-size: 2rem;
        margin: 20px;
    }
    .banniere h3{
        width: 90%;
        font-size: 17px;
    }
    main{
        margin-top: -40px;
    }

    main h1{
        font-size: 2rem;
    }
    .myVideo{
        width: 90%;
    }

}

@media screen and (max-width: 330px) {
    main{
        margin-left: 20%;
    }
}