* {
    margin: 0;
  }
  
  body {
    font-family: 'Manrope', sans-serif;
    font-size: 1em;
    background-image : url('images/champagne-vue.jpg');
    background-size:cover;
    background-attachment: fixed;
    height:100vh;
  }
  
  .navbar {
    display: flex;
    background-color:white;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding: 2px;
    z-index: 1000;
  }

  .navbar a {
    margin-left: 30px;
    display: inline-block;
    padding: 10px 15px;
    transition: background-color 0.4s ease-in-out;
  }

  .navbar a:hover {
    text-decoration: underline;
    font-size: 1.2em;
    font-weight: 600;
    color: orangered
  }

.navbar.scrolled {
  background-color: #e7e7f9 ;
  border-bottom: solid 5px black;
}
  a {
    color: #242424;
    text-decoration: none;
  }
  
  .menuencadre {
    display: inline-block;
    background-color: black;
    color: white;
    border-radius: 30px;
    padding-left: 10px;
    padding-right:10px;
    }
  
  h1 {
    font-size: 3.5em;
    color: #a5b4fc;
    font-family: 'Montserrat', sans-serif;
  }
  
  h2 {
    color: #f9f8ff;
  }
  
    p {
    font-size: 1.1em;
    color: black;
  }
 
.logo{
  width: 80px;
  height: 60px;
  opacity: 0.5;
  margin-top:0;
  margin-bottom: 0;
}

  header,
  footer {
    background-color: white;
    padding: 20px 50px;
  }
  
  footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cta {
    background: linear-gradient(#8e86b5, #acaeed);
    color: white;
    border-radius: 50px;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px 30px;
  }
  
  a:hover {
    text-decoration: underline;
    font-size: 1.2em;
    font-weight: 600;
    color: orangered
  }
  
  .cta:hover {
    background: linear-gradient(#696484, #8788ba);
    text-decoration: none;
  }
  
  /* marge icones X et instagram*/
  .lien-icone {
    margin-left: 30px;
  }
  
  /*icones X et instagram en opacity 50% au survol*/
  .lien-icone:hover {
    opacity: 0.5;
  }

  nav a {
    margin-left: 30px;
  }
  

/* espace du bouton nous situer avec la barre de menu*/
.blocsituer {
  padding-top: 60px;
}
 
/* formatage de l'affichage de la date*/
#date-display {
  font-size: 1em;
  color: black;
}

/* format du block qui contient la carte google*/
.address {
    /*centrage horizontal avec margin auto*/
margin: auto;
 /* je définis que la carte a une taille de 30% de la largeur*/
align-content: center;
padding-top: 50px;
padding-left: 80px;
padding-bottom: 50px;
}

  p1{
line-height: 1.8em;
color:black ;
  }


  p {
    font-size: 1.1em;
    color: black;
  }

/* formatage du bouton envoi*/
  .boutonenvoi{
    margin-top: 20px;
    margin-left: 50px;
    font-size: 1em;
    font-weight: 500;
  
  }
/* formatage des boutons radio pour le choix de la prise de contact*/
 input [type="radio"] {
    margin-top : 50px ;
    margin-left: 20px;
    font-size : 10em ;
    }

/*formatage de la zone de saisie de texte*/
    input, textarea {
    padding : 10px ;
    border : 1px solid black ;
    outline : none ;
    margin-bottom : 20px ;
    margin-left: 10px;
    border-radius : 10px ;
    }
    
 /* espacement des zones de saisie */
   .espacermenu{
    margin-left: 20px;
   }

/*formatage du formulaire*/
    fieldset{
    width : 90%;
    margin : auto;
    background-color : lightgray;
    opacity: 0.9;
    border-radius: 10px;
    margin-top: 60px;
    }

  /* formatage des titres des différentes zones (vos coordonnées, votre message) du formulaire*/
    legend{
      background-color: white;
      border: 1px solid black;
      border-radius: 5px;
      padding-left:15px;
      padding-right: 15px;
      padding-top:10px;
      padding-bottom: 10px;
    }

