@font-face {
  font-family: 'Gill Sans Std Extra Bold Display';
  src: url('./gill-sans-std-extra-bold-display.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

.faq-section {
  padding: 2em;
  color: black;
  font-family: 'Gill Sans Extra Bold Display', sans-serif;
}

.faq-section h2 {
  color: RGBA(253, 61, 181, 1);
  font-size: 2.5em;
  text-transform: uppercase;
  font-weight: 900;
  font-family: 'Gill Sans Extra Bold Display', sans-serif;
  text-shadow:
    2px 2px 0 black,
    -2px -2px 0 black,
    2px -2px 0 black,
    -2px 2px 0 black;
  background-color: #000;
  display: inline-block;
  padding: 0.2em 0.5em;
  transform: rotate(-2deg);
  box-shadow: 5px 5px 0 RGBA(253, 61, 181, 1);
  margin-bottom: 1em;
}


.faq-item {
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  font-family: 'Gill Sans Extra Bold Display', sans-serif;
  text-transform: uppercase;
}

.faq-question {
  background-color: #d3d3d3;
  padding: 1em;
  font-weight: 900;
  border-left: 8px solid magenta;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 black;
font-size: clamp(18px, 3vw, 32px);
  text-shadow: 1px 1px black;
  width: fit-content;
  max-width: 90%;
}

.faq-answer {
  background-color: #ff66cc;
  padding: 1em;
  border-right: 8px solid black;
  transform: rotate(1.5deg);
  box-shadow: -4px 4px 0 black;
font-size: clamp(18px, 3vw, 32px);
  margin-left: auto;
  width: fit-content;
  max-width: 85%;
  text-align: left;
}

.faq-answer a {
  color: black;
  font-weight: 900;
  text-decoration: underline;
}

.faq-answer a:hover {
  text-decoration: none;
}

