.attribution { 
  font-size: 11px; 
  text-align: center; 
}
.attribution a { 
  color: hsl(228, 45%, 44%); 
}
:root {
  --White: hsl(0, 0%, 100%);
  --Light-pink: hsl(275, 100%, 97%);
  --Grayish-purple: hsl(292, 16%, 49%);
  --Dark-purple: hsl(292, 42%, 14%);
  --Purple: hsl(293, 75%, 54%);
}
*{
  margin: 0;
  padding: 0;
}
body {
  background-color: var(--Light-pink);
  background-image: url(./assets/images/background-pattern-desktop.svg);
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  justify-content: center;
  gap: 2rem;
}
.card {
  background-color: var(--White);
  width: 30rem;
  margin: auto;
  padding: 2rem;
  border-radius: 0.75rem;
}
header {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
h2 {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
h2:hover {
color: var(--Purple);
}
header img {
  width: 1.7rem;
}
.question--header img{
  width: 1.4rem;
  cursor: pointer;
}
.question--header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: 1.5rem 0;
}
p {
  color: var(--Grayish-purple);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: none;
}
.faqs {
  border-bottom: 1px solid var(--Light-pink);
}
.last {
  border: none;
}
@media screen and (min-width: 320px) and (max-width: 576px) {
  body{
    background-image: url(./assets/images/background-pattern-mobile.svg);
  }
  .card {
    width: 70%;
  }
  .question--header img{
    width: 1.8rem;
  }
  h2 {
    /* max-width: 15rem; */
    max-width: 80%;
  }
}