body {
  min-height: 100dvh;
  overflow: hidden;
  cursor: pointer;
}
body .main {
  min-height: 100dvh;
  height: 100dvh;
  width: 100dvw;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: end;
  position: fixed;
  overflow: hidden;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
body .main .triangle {
  background-image: url(../images/etiquette.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 12%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
body .main .triangle h1 {
  transform: rotate(270deg);
  white-space: nowrap;
  letter-spacing: 4px;
  font-size: 3rem;
  cursor: pointer;
}
body .main .contenu {
  height: 101%;
  overflow-y: scroll;
  overflow-x: hidden;
  width: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 150%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--clr-claire);
  transition: left ease-in-out 300ms;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .main .contenu .titre {
  display: flex;
  justify-content: center;
  align-items: center;
}
body .main .contenu .titre h1 {
  padding: 50px;
  font-size: 3.5rem;
}
body .main .contenu .titre img {
  width: 5%;
  height: auto;
}
body .main .contenu p {
  padding: 10px;
  padding-left: 100px;
  padding-right: 100px;
  text-align: left;
  letter-spacing: normal;
  font-size: 1.1rem;
}
body .main .contenu .infos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--clr-claire-secondaire);
  width: 80%;
  border-radius: 50px;
  padding: 30px;
  margin: 20px;
  text-align: left;
}
body .main .contenu .infos div {
  margin: 10px;
  height: 80%;
}
body .main .contenu .infos div h2 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
body .main .contenu .infos div h3 {
  font-size: 0.8rem;
}
body .main .contenu .infos .distance {
  font-size: 2rem;
}
body .main .contenu .infos .difficulte {
  height: 75px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
body .main .contenu .infos .difficulte h3 {
  font-size: 1rem;
}
body .main .contenu .liens {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  margin-bottom: 25px;
}
body .main .contenu .liens h2 {
  font-size: 1rem;
  margin: 10px;
  letter-spacing: 1px;
  padding: 10px;
  padding-left: 100px;
  padding-right: 100px;
}

/* Tablette */
@media screen and (max-width: 1024px) {
  body .main .contenu .titre h1 {
    text-align: center;
  }
  body .main .contenu .titre img {
    display: none;
  }
  body .main .contenu p {
    padding-left: 40px;
    padding-right: 40px;
  }
  body .main .contenu .infos {
    flex-direction: column;
  }
}/*# sourceMappingURL=site-nature-single.css.map */