@import url("https://fonts.googleapis.com/css2?family=Italiana&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap");

#langue {
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: bold;
}

.logo-menu {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.0em;
  text-transform: uppercase;
}

header {
  background: linear-gradient(#ffffff, #ffffff60), url(/static/assets/img/abstract.jpg);
}

header .icon {
  width: 2rem;
}

header nav a {
  text-transform: uppercase;
}

#nav-bar {
  box-shadow: 1px 0.5px 10px #2525255d;
}

nav a {
  text-decoration: none;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #000000;
  transition: 1s;
  font-size: 14px;
}

nav a:hover {
  color: green;
}

hr {
  height: 0.3rem;
  border: none;
  margin: 0.2rem 0;
}

#nav-bar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999999;
}

#decouvert-btn {
  display: none;
}

#close-decouvert-btn {
  display: none;
}

@media (max-width: 870px) {

  #decouvert-btn,
  #close-decouvert-btn {
    display: inline-block;
    background: transparent;
    border: none;
    font-size: 2em;
  }

  .hide-nav {
    width: 100vw;
    height: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
  }

  .show-nav {
    height: 100vh;
    background: white;
    z-index: 999999999;
  }

  .show-nav button {
    position: fixed;
    right: 2rem;
    top: 2rem;
  }
}

@media(max-width: 480px) {
  .main-nav {
    justify-content: center;
    gap: 1rem;
  }
}