body {
    margin: 0;
    font-family: "Michroma", sans-serif;
}

header {
    width: 100%;
    height: 10vh;
    background-color: #060606CC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: fixed;
    z-index: 3;

}

header ul{
    display: flex;
    gap: 40px;
}

header ul li{
    list-style-type: none;
    font-size: 18px;

}

.logo {
    font-size: 32px;
}



main {
    width: 100%;
    height: 90vh;
    position: relative;

}

.front {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: relative;
    
}

.front p {
    font-size: 18px;
    mix-blend-mode: difference;
    color: white;
    width: 30%;
    text-align: center;
    margin: 0;
}

h1 {
    font-size: 48px;
    mix-blend-mode: difference;
    color: rgb(255, 255, 255);
    margin: 0;
    margin-top: 10vh;

}

.modelviewer {
    height: 50vh;
    width: 90vw;
    margin: -5vh;
}

.modelviewerAnim {
    position: absolute;
    left: 0;
    height: 0;
    width: 100vh;
    height: 100vh;
    transition-duration: 1s;

}

.fondgauche {
    position: absolute;
    width: 50%;
    height: 100vh;
    background: url(Rectangle4.jpg);
    background-size: cover;
    left: 0;
    z-index: -2;
}

.fondgauche::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    background: #000000CC ;
    z-index: -1;
    backdrop-filter: blur(10px);
}

.fondgaucheAnim {
    transform: scaleX(2);
    transform-origin: left;
    transition-duration: 1s;

}

.fonddroit {
    position: absolute;
    width: 50%;
    height: 100vh;
    background: url(image1.jpg);
    background-size: cover;
    right: 0;
    z-index: -4;
}

.fonddroit::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    background: #ffffffcc ;
    z-index: -3;
    backdrop-filter: blur(10px);
    border-left: 2px solid  #6B6B6B;
    box-sizing: border-box;
}

.btndecouvrir {
    width: 200px;
    font-size: 20px;
    background-color: #010101;
    color: #FEEACD;
    border-radius: 25px;
    padding: 10px;
    box-shadow: 0px 0px 10px 1px #7B7B7BBF;
    border: none;
    font-family: "Michroma", sans-serif;
    cursor: pointer;
}

.disparitionAnim {
    opacity: 0;
    transition-duration: 0s;
}


.Product {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 50vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    gap: 10px;
}

.ProductAnim {
    opacity: 1;
    transition-duration: 1s;
}

.Product * {
    mix-blend-mode: difference;
    width: 70%;
    color: white;
}

h2 {font-size: 35px;}

.prix {
    font-size: 35px;
}

.prix span {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.btnacheter {
    width: 200px;
    font-size: 20px;
    background-color: #ffffff;
    color: #35260e;
    border-radius: 25px;
    padding: 10px;
    box-shadow: 0px 0px 10px 1px #7B7B7BBF;
    border: none;
    font-family: "Michroma", sans-serif;
}