
body {
color:black;
background-color:white;

}


#TheCadre {
width: 80%;
height: 10px;
margin-left: 20px;
color: purple; 
/* background-color: red;*/
font-size: 2rem;
font-weight: bold;
/* border-style: solid; */
/* border-color: black; */
// background-image:url('Images/contact-us.jpg');
background-image : linear-gradient(to right, black, white);
background-repeat: no-repeat;
}

#TheForm {
width: 600px;
height : 800px;
float: left;
margin-left: 50px;
padding: 20px;/* marge versus border */
color: white; 
font-size: 1rem;
font-weight: bold;
border-style: solid;
border-color: black;
// background-color: #EFEFEF; /* gris clair */
background-image : linear-gradient(to bottom, purple, black);

}

/* Colonne vide intermédiaire */
#FormAnx1 {
width: 20px;
height: 800px;
padding: 20px;
float:left;
color: black; 
font-size: 1rem;
font-weight: bold;
background-color: white;

}

/* colonne photo */
#FormAnx2 {
width: 600px;
height: 800px;
float: left;
padding: 5px;/* marge versus border */
color: white; 
font-size: 1rem;
font-weight: bold;
border-style: solid;
border-color: black;
background-image:url('Images/boletib-mix2.jpg');
background-size: 100% 100%;
background-repeat: no-repeat;
}

/* colonne tampon pour finir la ligne de block */
#FormAnx3 {
width: 100%;
height: 800px;
padding: 20px;
color: black; 
background-color: white;
font-size: 1rem;
font-weight: bold;
}

.SendContact {
width: 170px;
height: 60px;
background-image: url('Images/send.jpg');
background-size: 100% 100%;
background-repeat: no-repeat;
border-style: outset;
margin-left: 40px;
}

.SendContact:hover {
width: 170px;
height: 60px;
background-image: url('Images/send.jpg');
background-size: 100% 100%;
background-repeat: no-repeat;
border-style: none;
margin-left: 40px;
background-color: #AA00FF;
background-blend-mode: luminosity;


}
.ClearContact {
width: 120px;
height:60px;
background-image: url('Images/clear.jpg');
background-size: 100% 100%;
background-repeat: no-repeat;
border-style: outset;
margin-left: 40px;
}

.ClearContact:hover {
width: 120px;
height:60px;
background-image: url('Images/clear.jpg');
background-size: 100% 100%;
background-repeat: no-repeat;
border-style: none;
margin-left: 40px;
background-color: #AA00FF;
background-blend-mode: luminosity;

}



p#myformat { 
   
   color: #AA00FF; /* violet */
   font-weight: normal;
   letter-spacing: .4em;
   margin-left : 400px;
   text-transform: lowercase;
}

#LogoSite {
width: 150px;
height: 100px;
 float:left;
display: block;
//background-color: #00FF00;
}


#TopFen {
width: 600px;
height: 100px;
float:left;
color: black ;
font-weight: bold;
font-size : 2em;
letter-spacing: 1em;
// background-color: #EFEFEF; // gris clair
}

#Connexion {
width: 600px;
height: 100px;
float:left;
color: black ;
font-weight: bold;
font-size : 2em;
letter-spacing: 1em;
// background-color: #EFEFEF; // gris clair
}

#Connexion :hover{
cursor: pointer;
}

#FenMenu {
/* pas de width : prend toute largeur dispo */
width: 100%;
height : 100px;
color: #0000FF;
// float:right;
//display: flex;
background-color: blue;
}

#NavMenu {
	padding: 0; margin: 0;   /* margin par rapport au bord superieur */
}
#NavMenu li {
	display: inline;
	list-style: none; /* nécessaire pour IE7 */
}

#NavMenu a {
	display:inline-block;
	margin: 0 15px;  /* margin entre les options */
        font-size: 1.5rem; 
        font-weight: bold;
        letter-spacing: 1px;
}


#OffreMois {
position: relative;
top: -20px;
left: 60px;
width: 200px;
height : 60px;
margin-left: 20px;
padding: 20px;/* marge versus border */
color: white; 
font-size: 1.5rem;
font-weight: bold;
// border-style: solid;
// border-color: black;
border-radius: 30% 30% 30% 30%;    // top left - top right - bottom right - bottom left
background-color: rgba(0, 0, 0, 0.5); // current color;
// background-image : linear-gradient(to bottom, purple, black);
animation: MyTextBlink 1.5s linear infinite; // voir plus definition du @keyframe MyTextBlink

}


#Plaquette {
position: absolute;
top: 160px;
left: 80%;
width: 100px;
height: 100px;
margin-left: 20px;
padding-top: 20px;/* marge versus border */
color: purple; 
font-size: 1.2rem;
font-weight: bold;
// border-style: solid;
// border-color: black;
border-radius: 30% 30% 30% 30%;    // top left - top right - bottom right - bottom left
// background-color: rgba(0, 0, 0, 0.5); // current color;
background-image: url('Images/Plaquette 2021.jpg');
background-size: 100% 100%;
background-repeat: no-repeat;
// animation: MyTextBlink 10s linear infinite; 
animation: ZoomInOut 5s infinite;

}

#Maquillage {
visibility: hidden;  // temporairement desactive
position: relative;
top: -140px;
left: 30%;
width: 180px;
height: 180px;
margin-left: 20px;
padding-top: 20px;/* marge versus border */
color: black; 
font-size: 1rem;
font-weight: bold;
// border-style: solid;
// border-color: black;
border-style: none;
border-radius: 50% 50% 50% 50%;    
// background-color: rgba(0, 0, 0, 0.5); // current color;
background-image: url('Images/visage bubble 2.jpg');
background-size: 100% 100%;
background-repeat: no-repeat;
opacity: 0.9;
// animation: MyTextBlink 10s linear infinite; 
animation: ZoomInSlow 30s infinite;

}
 



@keyframes MyTextBlink { 
            0% { 
                opacity: 0; 
            } 
  
            50% { 
                opacity: 0.7; 
            } 
  
            100% { 
                opacity: 0; 
            } 
        } 


@keyframes ZoomInOut {
    0% {
        transform: scale(1,1);
    }
    50% {
        transform: scale(1.4,1.4);
    }
    100% {
        transform: scale(1,1);
    }
}

@keyframes ZoomInSlow {
    0% {
        transform: scale(0.1,0.1);
    }
    15% {
        transform: scale(0.2,0.2);
    }
    30% {
        transform: scale(0.3,0.3);
    }
    40% {
        transform: scale(0.4,0.4);
    }
    50% {
        transform: scale(0.5,0.5);
    }
    60% {
        transform: scale(0.6,0.6);
    }
    70% {
        transform: scale(0.7,0.7);
    }

    80% {
        transform: scale(0.8,0.8);
    }
   85% {
        transform: scale(0.9,0.9);
    }
    87% {
        transform: scale(1.0,1.0);
    }

    90% {
        transform: scale(1,1);
    }
    95% {
        transform: scale(1.2,1.2);
    }
    100% {
        transform: scale(1.2,1.2);
    }
}

#Divisit {
position: absolute;
top: 25px;
left: 87%;
//left: 1320px;
width: 130px;
height: 50px;
padding-left: 20px;
color: black ;
font-weight: bold;
font-size : 1em;
// letter-spacing: 1em;
// background-color: blue; 
background-image:url('Images/back_noirfume.jpg');
}

@media screen and (max-width: 1000px) {
  p#myformat {
    margin-left: 50px;   // Mobile, IPhone .... affichage menu sous bloc div precedent
      }
	#WebTitre {
    	left: 100px;   // Mobile, IPhone .... affichage menu sous bloc div precedent
      }
	#WebSubTitre {
    	left: 200px;   // Mobile, IPhone .... affichage menu sous bloc div precedent
      }

      #FormAnx2 {
	clear: left;
        margin-top: 20px;
        margin-left: 50px;
	height : 400px;
        display: block;
	}
      #FormAnx3 {
	clear: left;
        height : 10px;
        display: block;
	}

  #Plaquette {
	// left: 800px;
        top: 250px;
       	}

#Divisit {
   left: 600px;
   
 }

#MainDiv{
width: 100%;
}

}

@media screen and (min-width: 1800px) {
  

  #Plaquette {
	// left: 1700px;
       
       	}

}

