@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat&family=Nunito&display=swap");

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  color: black;
}

html {
  scroll-behavior: smooth;
}

header {
  text-align: center;
  height: 50px;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 5;
  background-color: white;
  transition: 0.5s ease;
  /* box-shadow: 5px 5px 10px 5px rgba(255, 255, 255, 0.747); */
}

.coin {
  width: 150px;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.452);
  border-radius: 0% 100% 17% 83% / 83% 0% 100% 17%;
}

p {
  font-size: 1.2em;
  font-family: "Nunito";
}

h1 {
  font-family: "Bebas Neue";
  font-size: 2.8em;
}

h2 {
  font-family: "Bebas Neue";
  font-size: 2.5em;
}

main {
  width: 100%;
  margin-top: 80px;
}

.icone_whatsapp {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 5;
}

.one {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.one div {
  width: 80%;
}

img {
  height: 350px;
  border-radius: 8px;
  margin-bottom: 20px;
  animation: haut 1s ease-in-out infinite;
}

@keyframes haut {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.red {
  color: rgb(165, 6, 6);
  font-family: "Bebas Neue";
}

.credible {
  background-color: rgb(165, 6, 6);
  font-family: "Nunito", sans-serif;
  padding: 15px;
  font-weight: bold;
  color: white;
  border-radius: 8px;
  display: inline-block;
}
.offre {
  background-color: rgb(255, 255, 255);
  color: rgb(165, 6, 6);
  border: 1px solid;
}

@media (min-width: 600px) {
  .one {
    flex-direction: row;
    justify-content: space-around;
  }
  .one div {
    width: 45%;
  }
}

.two {
  width: 100%;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.two .title {
  text-align: center;
  width: 80%;
}
.packs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.pack {
  width: 300px;
  height: 300px;
  margin-top: 30px;
  text-align: center;
  border: 1px solid rgb(165, 6, 6);
  padding: 15px;
}

li {
  font-size: 1.1em;
}

@media (min-width: 800px) {
  .packs {
    flex-direction: row;
    justify-content: space-around;
  }
}

.tree {
  text-align: center;
  margin-top: 60px;
}

.tree img {
  height: 200px;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  background-color: black;
}

footer div {
  margin-bottom: 40px;
}

@media (min-width: 800px) {
  .tree img {
    width: 100%;
  }
}

/* animation observer */
.titre1,
.titre2,
.titre3 {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease;
}
.animation1 {
  opacity: 1;
  left: 0;
  transform: translateY(0);
}
