html,
body {
  min-height: 100vh;
  overflow: auto;
}

.note3 {
  align-items: center;
  padding: 12px;
  color: #7c7c7c;
  border: 1px solid #7c7c7c;
  border-radius: 10px;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: white;
  font-family: Poppins, sans-serif;
  background-color: #1d1e28;
}

h1 {
  font-weight: 700;
}

.description {
  margin: 0;
  color: #b8b8bc;
  text-align: center;
}

.buttons-container-horizontal {
  display: flex;
  flex-direction: row;
  margin-top: 16px;
}

.buttons-container-vertical {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  margin-top: 16px;
}

.button {
  margin: 10px 2px;
  padding: 15px 48px;
  color: white;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
}

.button-sub {
  font-weight: 400;
}

.download-btn {
  background-color: #1fc71f;
}

.endsupport-download-btn {
  background-color: #ff0000;
}

.downloadold-btn {
  background-color: #777777;
}

.download-soon-btn {
  background-color: #eeb282;
}

.join-discord-btn {
  background-color: #7289da;
}

.check-github-btn {
  background-color: #9d59d4;
}

.learn-more-btn {
  background-color: #2c2f33;
}

.write-modify-review-btn {
  background-color: #1fc71f;
}

.read-all-reviews-btn {
  background-color: #2c2f33;
}

.inline-link {
  color: #1fc71f;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
  text-decoration-color: #1fc71f;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reviews-carousel {
  margin-top: 12vh;
  margin-bottom: 4vh;
}

.reviews-container {
  text-align: center;
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: 50px;
}

.review-img {
  align-self: center;
  width: 128px;
  border-radius: 50%;
}

.review-author {
  color: #1fc71f;
  font-size: x-large;
}

.review {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.star {
  color: #1fc71f;
}

.filled {
  font-variation-settings: "FILL" 1;
}

.features-decoration {
  display: block;
}

.features-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1fc71f;
  margin-top: -1px;
}

.features-title {
  margin: 0;
}

.features-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.features-card {
  width: 200px;
  height: 350px;
  margin: 10px;
  padding: 40px;
  background-color: #1d1e28;
  border-radius: 22px;
}

.feature-title {
  margin: 0;
  color: #1fc71f;
}

.features-list {
  display: flex;
  flex-direction: column;
  height: 85%;
  padding: 0;
  list-style-type: none;
}

.feature {
  height: 100%;
  color: #b8b8bc;
}

.feature:last-of-type {
  height: fit-content;
  margin-top: 75px;
}

.site-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-container {
  display: flex;
}

.stat {
  margin: 20px;
  text-align: center;
}

.stat-value {
  color: #1fc71f;
  font-size: 50px;
}

.downloads {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.downloads-title {
  margin-bottom: 0;
}
.statsplus {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
}

.stats0 {
  flex: 1 0 calc(33.33% - 20px);
  max-width: calc(33.33% 40px);
  margin-bottom: 0px; /* Réduire la marge inférieure */
}

@media (max-width: 768px) {
  .stats0 {
      flex: 1 0 calc(50% - 20px);
      max-width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .stats0 {
      flex: 1 0 calc(100% - 20px);
      max-width: calc(100% - 20px);
  }
}


@media only screen and (max-width: 800px) {
  .title {
    text-align: center;
  }

  .buttons-container-horizontal {
    flex-direction: column;
  }

  .features-container {
    text-align: center;
  }

  .stats-container {
    flex-direction: column;
  }
}