@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Potta+One&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
header {
  position: absolute;
  width: 100%;
  height: 8vh;
  top: 0;
  left: 0;
  color: white;
  padding: 0 2rem;
}
html {
  font-size: 16px;
}
h6 {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}
.titre {
  width: 100%;
  height: 100%;
  font-family: "Potta One", cursive;
  font-weight: 300;
  font-size: 1.8rem;
  text-align: center;
  padding-top: 10px;
}
body {
  font-family: sans-serif;
  overflow-x: hidden;
}
nav {
  width: 100%;
  height: 100%;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accueil {
  padding-top: 80px;
  height: 500px;
}
.accueil_text h6 {
  font-family: "Potta One", cursive;
  font-weight: 300;
}
.toggle {
  display: none;
  position: absolute;
  top: 90px;
  right: 30px;
  font-size: 2.5rem;
  cursor: pointer;
}
.container {
  width: auto;
  height: 100%;
  display: flex;
  padding-top: 60px;
}
.menu {
  width: 25%;
}
.menu_li {
  width: 100%;
  height: 85%;
  display: flex;
  flex-direction: column;
  list-style: none;
  justify-content: space-around;
  align-items: center;
  padding-top: 20px;
  font-family: "Potta One", cursive;
  font-size: 1.2rem;
  color: palevioletred;
}
.accueil_text {
  padding-top: 20px;
  width: 50%;
  padding-right: 20px;
  text-align: center;
  font-size: 2rem;
}
.accueil_text p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: blanchedalmond;
  text-align: justify;
}
.accueil_text p a {
  color: palevioletred;
}
.pub {
  width: 347px;
  height: auto;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 10px;
}
.pub_titre {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
.pub_titre h6 {
  text-align: center;
  font-family: "Potta One", cursive;
  font-weight: 300;
  font-size: 1.5rem;
}
.pub_titre p {
  text-align: center;
  font-size: 1rem;
  color: white;
}
.pub_titre2 {
  margin: 0 auto;
  width: 222px;
  height: 386px;
  border-radius: 5px;
}
.menu_li li a {
  color: palevioletred;
}
.accueil {
  height: 100vh;
  background: url("fond1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.pied {
  width: 100%;
  padding-top: 10px;
}
.pied_text {
  display: flex;
  justify-content: center;
  align-items: center;
  color: blanchedalmond;
}
.pied_text a {
  color: palevioletred;
}
.mention {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(205, 255, 228);
}
.mention a {
  color: blanchedalmond;
  text-decoration: none;
  font-size: 0.7rem;
  font-family: Arial, Helvetica, sans-serif;
}
@media all and (max-width: 901px) {
  body {
    overflow-x: hidden !important;
    width: 100vw;
  }
  header {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
  }
  .titre {
    width: 100%;
    height: 100%;
    font-family: "Potta One", cursive;
    font-weight: 300;
    font-size: 1.6rem;
    text-align: center;
    padding-top: 10px;
  }
  .toggle {
    display: none;
  }
  .ouvrir {
    display: block;
  }
  .fermer {
    display: none;
  }
  .open .ouvrir {
    display: none;
  }
  .open .fermer {
    display: block;
  }
  .menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    flex-direction: column;
    padding: 1rem;
    background: url("fond2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    justify-content: space-around;
    transform: translateX(-100%);
    transition: transform 1s;
  }
  .menu_li {
    width: 100%;
    display: flex;
    flex-direction: column;
    list-style: none;
    justify-content: space-around;
    align-items: center;
    padding-top: 0px;
    font-family: "Potta One", cursive;
    font-size: 1.3em;
  }
  .menu li {
    font-size: 2rem;
    text-transform: uppercase;
  }
  .open .menu {
    transform: translateX(0);
  }
  .menu_li li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
  }
  .menu_li li a {
    color: blanchedalmond;
  }
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: auto;
    height: auto;
    padding-left: 8px;
    padding-top: 0px;
  }
  .accueil {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: auto;
    background: rgb(31, 3, 61);
    background-size: cover;
    background-position: center;
  }
  .accueil_text {
    width: 100%;
    padding-left: 10px;
    padding-top: 80px;
  }
  .accueil_text p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    color: blanchedalmond;
    text-align: justify;
  }
  .accueil_text p a {
    color: palevioletred;
  }
  .pied {
    width: 100%;
    height: 90px;
    background: rgb(31, 3, 61);
    padding-top: 5px;
    position: absolute;
    width: 100%;
  }
  .pied_text {
    display: flex;
    justify-content: center;
    text-align: center;
    color: blanchedalmond;
    font-size: 0.3rem;
  }
  .pied_text a {
    color: blanchedalmond;
    font-size: 1.3rem;
  }
  .mention {
    display: flex;
    justify-content: center;
    text-align: center;
    color: blanchedalmond;
  }
  .mention a {
    color: blanchedalmond;
    font-size: 0.7rem;
    font-family: Arial, Helvetica, sans-serif;
  }
}
