html {
  overflow-x: hidden;
}

#faq {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
#faq #faq-container {
  width: 45%;
  margin: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#faq #faq-container .faq-card {
  margin: 20px 0;
}
#faq #faq-container .faq-card .question-card {
  background-color: #242831;
  padding: 10px;
  border-radius: 5px;
}
#faq #faq-container .faq-card .question-card h2 {
  margin: 0;
  font-size: 1.3em;
  color: white;
}
#faq #faq-container .faq-card .answer {
  font-size: 1.1em;
  text-align: justify;
  color: #cccccc;
  margin-top: 5px;
}

@media all and (max-width: 1000px) {
  #faq #faq-container {
    width: 85%;
  }
  #faq #faq-container .faq-card .question-card h2 {
    font-size: 1.15em;
  }
  #faq #faq-container .faq-card p {
    font-size: 1.05em;
  }
}/*# sourceMappingURL=faq.css.map */