html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

#wrapper {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  list-style-type: none;
}

header {
  background-image: url("../img/fondVoiture.png");
  color: white;
  font-family: arial;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.innerHeader {
  padding: 1em;
}

header h1 {
  font-size: 4em;
  margin: 0;
  position: absolute;
  top: 45%;
  right: 50%;
}

header h2 {
  font-size: 2em;
  margin: 0;
}

header nav {
  padding: 0.5em 0;
}

header nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1em;
}

header nav ul li {
  display: inline;
  text-align: right;
  width: 100%;
  transition: all 1s ease;
  height: 0px;
  opacity: 0;
  font-style: normal;
  font-family: "Geologica", sans-serif;
  /*font-variant-caps: small-caps;*/
  font-weight: 900;
  text-shadow: 1px 1px 5px #b1b0af;
  font-size: 2em;
  line-height: 0.5em;
}

header nav:hover ul li {
  height: 1em;
  opacity: 1;
  transition: all 0.5s ease;
}

header nav ul li:hover {
  /*font-family: "Lavishly Yours", cursive;
  font-variant-caps: normal;*/
  text-shadow: none;
}

#header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vw;
  object-fit: cover;
  z-index: -1;
}

section {
  position: relative;
  /*overflow: scroll;*/
}

section article {
  flex: 0;
  position: relative;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  height: 100vw;
}

.innerMenutop,
.innerMenubottom {
  position: absolute;
  left: 0;
  mix-blend-mode: screen;
}

.innerMenutop {
  top: 0;
}

.innerMenubottom {
  bottom: 0;
}

.innerMenutop ul {
  color: #000;
  list-style-type: none;
}

.article-inner-wrap {
  padding: 0 1em;
  display: flex;
  gap: 1em;
}
