/* The navigation menu */
.navbar {
  display: flex;
  background-color: rgba(19, 58, 77,0.9);
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
  position: fixed;
  flex-direction: row;
  align-content: center;
  justify-content: space-around;
}
#logo{
  margin: 0.3%;
}
.logoNels{
  width: 3em;
  height: 3em;
}
#cmdNav{
  display: flex;
  align-items: center;
}

/* The subnavigation menu */
.subnav {
  float: left;
  overflow: hidden;
}

/* Subnav button */
.subnav .subnavbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  background-color: rgba(19, 58, 77,0.9);
  font-family: inherit;
  margin: 0;
  display: flex;
  align-content: center;
  height: 100%;
  align-items: center;
}


/* Style the subnav content - positioned absolute */
.subnav-content {
  display: none;
  position: absolute;
  top:auto;
  width: 1000;

  left: 0;
  background-color: rgba(19, 58, 77,0.9);
  width: 100%;
  z-index: 1;
  top: 50px;
  width: 200px;
  z-index: 1000;
  box-sizing: border-box;
}

/* Style the subnav links */
.subnav-content a {
  float: left;
  color: whitesmoke;
  text-decoration: none;
}



/* When you move the mouse over the subnav container, open the subnav content */
.subnav:hover .subnav-content {
  display: block;
  top:auto;
  width: 100%;
}

  body{
      background-color:rgb(19, 58, 77);
      background-image:url('../imageComming/NelsAcceuill.jpeg');
      background-repeat: no-repeat;
      background-position: center center; /* Centrer horizontalement et verticalement */
      background-size: cover;
      display: flex;   
      justify-content: center;
      align-items: center;
      margin: 0;
  
  }
  #divlocalisation{
    display: flex;
    padding: 5%;
    flex-direction: row;
    align-items: center;
    border: whitesmoke;
    border: 2px solid;
    background-color: rgb(206,170,84);
  }
  h1
  {
      color:whitesmoke;
      font-style: italic;
      font-variant: small-caps;
      font-size: 800%;
      display: flex;
      justify-content: center;
  
  }
  h2{
      text-align: center;  
      color:whitesmoke;
      font-style: italic;
  }
  a{
      color: whitesmoke;
      text-decoration: none;
  }
   h3{
  color: whitesmoke;
  text-align: center;
  }
  footer{
    position: absolute; 
    width: 100%;
    text-align: center;
    background-color: rgb(19, 58, 77);
    bottom: 0;
  }
 #buttonResa{
  background-color: rgba(206, 170, 84, 0.9);
  border: none;
  color: rgb(19, 58, 77);
 }

@media  (max-width: 600px) {
  a#subcmdNav{
    display: flex;
    align-items: center;
    padding: 3%;
  }
  iframe#localisation{
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    border-radius: 15px;
  }

  #divlocalisation{
    display: flex;
    position:absolute;
    width: 75%;
    height: 55%;
    flex-direction: column;
    align-items: center;
    background-color:rgba(206,170,84,0.9);
    border-radius: 15px;
    border: gray;
  }
  div#textLocalisation{
    display: flex;
    flex-direction: column;
    align-items: center;
    color:rgb(19, 58, 77);
    padding-bottom: 5%;
  }
}
@media  (min-width: 600px) {
  a#subcmdNav{
    display: flex;
    align-items: center;
    padding: 1%;
  }
  iframe#localisation{
    width: 500px;
    height: 300px;
  }
  #divlocalisation{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    background-color: rgb(206, 170, 84);
    border: gray;
    padding: 0%;
  }
div#textLocalisation{
  display: flex;
  flex-direction: column;
  align-items: center;
  color:rgb(19, 58, 77);
  padding: 3%;
  text-align: center;
  padding-bottom: 5%;
}

}