:root {
  --white: hsl(0, 0%, 100%);
  --light-pink: hsl(275, 100%, 97%);
  --grayish-purple: hsl(292, 16%, 49%);
  --dark-purple: hsl(292, 42%, 14%);
  --question-purple: #ad28eb;
}


.inter-work-sans {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

/* Eliminar el modelo caja de css para medidas */

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background-color: var(--light-pink);
  font-family: "Work Sans", sans-serif;
}

.header {
  width: 100%;
  height: 80%;
}

.header img {
  width: 100%;
  height: 100%;
}

.main-container {
  margin: 0 auto;
  width: 600px;
  max-width: 100%;
  padding: 4rem;
  background-color: var(--white);
  margin-top: -15rem;
  margin-bottom: 15rem;
  position: relative;
  z-index: 1;
  border-radius: 1.5rem;
}

.answer-container {
   line-height: 2.5rem;
}

div.question {
  border-bottom: 1px solid hsla(292, 42%, 14%, 0.1);
  padding: 1.5rem 0;
}



.question:hover {
  cursor: pointer;
  color: var(--question-purple);
}

.question.questionNoH{
  color: var(--dark-purple);
  cursor: default;

}

.faqs-title {
  display: flex;
  margin-top: -3rem;
}

.faqs-title .main-title {
  font-size: 4rem;
  padding: 0 4rem;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.show {
  color: var(--grayish-purple);
  font-size: 1.5rem;
}

.hidden {
  display: none;
}

/* Media Query */
@media (max-width: 768px) {
  .main-container {
    max-width: 90%;
    margin-top: -4rem;
    margin-bottom: 8rem;
  }

  .plusSign {
    margin-left: 2rem;
  }
}
