@font-face {
    font-family: "Work Sans";
    src: url("./assets/fonts/WorkSans-VariableFont_wght.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: hsl(275, 100%, 97%);
  background-image: url(assets/images/background-pattern-desktop.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  display: flex;
  min-height: 85vh;
  align-items: center;
  justify-content: center;
  place-content: center;
  font-family: "Work Sans";
}

main {
  max-width: 50%;
  padding: 10px 25px;
  border-radius: 5px;
  background-color: white;
  font-family: "Work Sans";
  margin: 20px;
}
.header {
  display: flex;
  gap: 10px;
}
p {
  color: hsl(291, 22%, 75%);
  font-size: clamp(0.2rem, 3vh, 1rem);
  display: none;
  margin-bottom: 10px;
  font-weight: bold;
}
h3{
  margin-bottom: 10px;
  margin-top: 10px;
  width: 100%;
  color: hsl(292, 32%, 23%);
  font-size: clamp(0.2rem, 3vh, 1rem);
}

.question {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.attribution {
  font-size: 11px;
  text-align: center;
  margin-top: 12px;
}
.attribution a {
  color: hsl(228, 45%, 44%);
  text-decoration: none;
}

.faq{
  border-bottom: 1px solid hsl(292, 48%, 91%);;
}
