@import url(http://fonts.googleapis.com/css?family=Ubuntu|Pacifico);
body{
   
    
    background-image: url("../images/nature-background.jpg");
    background-repeat: no-repeat;
    background-size: cover; 
    background-attachment: fixed;
    width: 100vw ;
    height: auto;
    
}
section{
    width: 96%;   
    margin: 20px auto 0 auto ;
    border: 8px solid rgb(149, 177, 47);
    max-width:1200px;
}

header{
    width: 100%;
    height: 256px;
    background: url("../images/title.gif") no-repeat  right 65px top 50px,
                url("../images/apple.jpg")no-repeat left top;
    background-repeat: no-repeat;
    background-color: #ffff;        
}

header h1{
    font-family: 'Pacifico', cursive;
    padding-top: 145px;
    padding-right: 10px;
    text-align: right;
    color:rgb(149, 177, 47);
}

header p{ 
    font-family: 'Pacifico', cursive;
    padding-top: 25px;
    padding-right: 10px;
    text-align: right;
    color:rgb(149, 177, 47);
}

nav{
    display:flex;  
    justify-content: start; 
    height:75px;
    width: 100%;
    border-right: 1px solid rgb(149, 177, 47);
    background-color: rgba(255, 255, 255, 0.7);
    color: rgb(149, 177, 47);
}
nav ul {
    padding:20px 0 20px 75px;
    font-size: 1.7em;
}
nav ul li{
    font-family: 'Pacifico', cursive;
    border-right: 1px solid rgb(149, 177, 47);
    display:inline-flex;
    padding:0 25px 0 25px;
    color:rgb(149, 177, 47);
    
}
nav ul li a {
    color:rgb(149, 177, 47);
}
main{
    display:flex;
    width:auto;
    height:auto;
    background-color: #ffff;  
}

.img-left{
    width: 75px;
    height:350px;
    padding:50px 30px;
}
#img-left-contact{
    width: 50px;
    height:350px;
    padding:50px 30px;
}

.content{
    margin-top: 50px;
}
main h2{
    margin-bottom: 15px;
    font-size: 2em;
    color: rgb(149, 177, 47);
    font-weight: 800;
}
main p{
    margin-bottom: 15px;
   
}
main h3{
    margin-left: 30px;
    margin-bottom: 15px;
    color: rgb(149, 177, 47);
    border-bottom: 1px solid rgb(149, 177, 47);
}


form{
    width: 800px;
}
main label{
	/* Pour aligner les Ã©lÃ©ments de formulaire*/
	width:150px; 
	display:inline-block;
	/*Pour dimensionner les labels */
	margin-top:0.5rem;
}
input:required {
    background: #fff url(images/asterisk.png) 98% center no-repeat;
    
  /*   background-image:url(images/asterisk.png);
    background-position:right 2% center ;
    background-repeat:no-repeat; */
  }
form legend{
    font-family: 'Pacifico', cursive;
    color: rgb(149, 177, 47);
}
fieldset{
    border:1px solid rgb(149, 177, 47); 
    border-radius: 8px;
    padding:15px;
    margin-bottom: 25px;
    gap: 2px;
    
}


footer{
    margin:0;
    text-align: center;
    padding:50px;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 1.4em;
}