* {
    margin: 0;
  }
  
  body {
    font-family: 'Manrope', sans-serif;
    font-size: 1em;
    background-image : url('images/vinsblancrouge.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;
    }

  em {
    color:#495ec7;
    font-style: normal;
  }
  
  h1 {
    display:flex;
    font-size: 3em;
    color: #495ec7;
    font-family: 'Montserrat', sans-serif;
    background-color: lightgray;
    text-align: center;
    width: 40%;
    border-radius : 30% 70% 70% 30% ;
    padding-left: 5px;
  }
  
  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;
    background-color: white;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  a:hover {
    text-decoration: underline;
    font-size: 1.2em;
    font-weight: 600;
    color: orangered
  }
  
  .lien-icone {
    margin-left: 30px;
  }
  
  .lien-icone:hover {
    opacity: 0.5;
  }
  
  section {
    padding: 80px;
  }
  
  .a-propos-main {
    width: 50%;
    margin: auto;
  }
  
  
  nav {
    display: flex;
    background-color: white;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position:sticky;
    top:0;
  }

  nav a {
    margin-left: 30px;
  }

/*changements ici : formatage de la section notre-equipe*/
.notre-equipe{
  max-width: 100%;
}

/* adaptation des images - du même format - à la taille du bloc de chaque membre*/
.sommelier img, .guide img, .chef img {
    max-width: 100%;
    height: auto;
  }

  /* format des 3 blocs avec les membres de l'équipe photo et texte*/
.sommelier, .guide, .chef {
background-color: lightgray;
border: 5px solid white;
border-radius: 0;
text-align: center;
width: 20%;
height: auto;
}

/* formatage du block conteneur qui contient les photos et cv de l'équipe */
.conteneur {
    /* j'utilise le flexbox */
    display: flex;
    /* axe principal des éléments en ligne */
    flex-direction: row;
    /* éléments rassemblés au centre */
    justify-content: center;
    /* j'ajoute un espace entre chacun des éléments ici 5 px pour reproduire l'aspect du site*/
    gap: 20px;
    /* ajustement automatique à la taille de l'écran*/
    flex-wrap: wrap;
}


  p1{
line-height: 1.8em;
color:black ;
  }

    #date-display {
      font-size: 1em;
      color: black;
    }