body {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
}
.section-launch {
  margin: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.section-launch article {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  transition: all 0.2s;
}
.section-launch h2 {
  display: flex;
  justify-content: center;
  font-size: 18px;
}
.section-launch figure {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}
.section-launch a {
  display: block;
  text-decoration: none;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 2px 5px;
  font-size: 20px;
  margin: 6px;
  background: white;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}
.section-launch article:hover {
  box-shadow: 0 0 10px 2px rgba(137, 43, 226, 0.484);
  background: rgb(162, 63, 255);
  transform: scale(1.01);
}
.section-launch article:nth-child(2) {
  background: blueviolet;
  color: white;
}
.section-launch article:nth-child(3) {
  background: pink;
  color: white;
}
.section-launch article:nth-child(4) {
  background: rgb(76, 255, 157);
  color: white;
}
.section-launch article:nth-child(5) {
  background: rgb(255, 205, 112);
  color: white;
}
.section-launch article:nth-child(6) {
  background: rgb(147, 158, 255);
  color: white;
}
.section-info {
  margin: 0 auto;
  width: 800px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.section-info article {
  background: white;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 0 20px 4px rgba(137, 43, 226, 0.184);
  padding: 20px;
  width: 360px;
}
.section-info header {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  color: white;
  font-size: 22px;
  font-weight: bold;
  padding: 4px 20px;
  margin-bottom: 10px;
  font-family: monospace;
}
.section-info article:nth-child(2) header {
  background: red;
}
.section-info article:nth-child(3) header {
  background: green;
}
.section-info article:nth-child(4) header {
  background: blueviolet;
}
.section-info article:nth-child(5) header {
  background: orange;
}
.section-info article:nth-child(6) header {
  background: rgb(11, 219, 29);
}
.section-info article:nth-child(7) header {
  background: blue;
}
.section-info article:nth-child(8) header {
  background: firebrick;
}
.section-info article:nth-child(9) header {
  background: rgb(4, 128, 21);
}
.section-info section {
  font-size: 20px;
  color: black;
}

.section-faq {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
  font-size: 20px;
  margin: 0 auto;
  width: 800px;
}
details {
  margin: 0 auto;
  width: 800px;
}
details[open] summary::after {
  rotate: -180deg;
}
.section-title {
  margin-top: 50px;
  text-align: center;
  width: 100%;
  font-size: 22px;
}
summary {
  /* Override default "display: list-item" and position the summary text as well as the custom arrow icon */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  /* General styling */
  background-color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 500;
  margin-block-end: 0.5rem;
  padding: 0.75rem;
  box-shadow: 0 0 20px 10px rgba(136, 136, 136, 0.2);
  color: rgb(91, 0, 175);
}
/* Fallback code to hide standard marker, especially on Safari */
summary::marker,
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  /* CSS for chevron shape from https://css-shape.com/chevron/ */
  --shape-chevron-width: 1rem;
  --s: calc(var(--shape-chevron-width) / 4);

  /* Styling */
  content: "";
  aspect-ratio: 7/5;
  background: currentColor;
  clip-path: polygon(
    0 0,
    0 var(--s),
    50% 100%,
    100% var(--s),
    100% 0,
    50% calc(100% - var(--s))
  );
  flex-shrink: 0;
  width: var(--shape-chevron-width);

  /* Animation */
  rotate: 0deg;
  transition: rotate 0.35s ease;
}

.toplogo {
  height: 30px;
  font-weight: bold;
  display: flex;
  gap: 10px;
  justify-content: center;
  font-size: 20px;
  text-align: center;
  flex-wrap: wrap;
  align-items: center;
}
.toplogo img {
  border-radius: 100%;
  object-fit: scale-down;
  width: 36px;
  height: 36px;
}
.toplogo a {
  color: var(--main-color);
}
.toplogo h1 {
  font-size: 24px;
}

@media (max-width: 800px) {
  .section-launch a {
    border-radius: 4px;
    padding: 10px;
    font-size: 20px;
    margin: 10px;
  }
  .section-info {
    width: 100%;
    gap: 20px;
  }
  .section-info article {
    box-shadow: 0 0 10px 2px rgba(137, 43, 226, 0.184);
    padding: 10px;
    width: 80%;
  }
  .section-title {
    width: 100%;
  }
  details {
    margin: 0 auto;
    width: 80%;
  }
}

/* body {
  box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.1) inset;
} */
