nav {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: green;
  width: 200px;
  height: 800vh;
  padding: 0 1%;
  z-index: 100;
}
nav img {
  margin: 1.5rem;
  border-radius: 100%;
  border: 5px solid white;
  max-width: 8rem;
}
nav > .liens-lateraux {
  top: 5rem;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
nav > .liens-lateraux p {
  text-transform: uppercase;
  font-size: 17px;
  color: beige;
  font-weight: 900;
}
nav > .liens-lateraux > a {
  color: black;
  margin: 0.75rem;
  text-transform: uppercase;
  text-decoration: none;
}
nav > .liens-lateraux > a:hover {
  color: white;
}
@media screen and (max-width: 800px) {
  nav {
    display: none;
  }
}

i {
  font-size: 22px;
}/*# sourceMappingURL=navigation.css.map */