:root {
  --clr-white: hsl(0, 0%, 100%);
  --clr-pink: hsl(275, 100%, 97%);
  --clr-gray-purple: hsl(292, 16%, 49%);
  --clr-dark-purple: hsl(292, 42%, 14%);
  --ff-normal: "Work Sans", sans-serif;
  --fw-bold: 700;
  --fw-semi-bold: 600;
  --fw-regular: 400;
}

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
/*
  2. Remove default margin
*/
* {
  margin: 0;
}
/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}
/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
/*
  8. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}
/* Custom styling */

body {
  font-family: var(--ff-normal);
  background-image: url(assets/images/background-pattern-mobile.svg);
  background-repeat: no-repeat;
  min-height: 100vh;
  display: grid;
  place-content: center;
}
.container {
  background-color: var(--clr-pink);
  margin: 1.5rem;
  padding: 1rem;
  box-shadow: 0px 0px 2px 2px var(--clr-dark-purple);
  border-width: 0.01px;
  border-radius: 0.8rem;
  max-width: 600px;
}
.faq-title {
  display: flex;
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
}
.faq-title img {
  width: 25px;
  margin-left: 1rem;
  margin-right: 1.5rem;
}
.hidden-answer {
  display: none;
  font-size: 16px;
  font-weight: var(--clr-dark-purple);
  color: gray;
  margin-top: 0.5rem;
  transition: display 200ms ease;
}
button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 1.5rem;
  margin-top: 2rem;
  background-color: var(--clr-pink);
  border-style: hidden;
  border-width: 0.2rem;
  border-color: white;
}
button img {
  min-width: 30px;
}
.minus-icon {
  display: none;
}

@media (min-width: 410px) {
  body {
    background-image: url(assets/images/background-pattern-desktop.svg);
  }
}
